/* ═══════════════════════════════════════════════════════════════
   PikoTrack Landing — Modern Minimal
   ═══════════════════════════════════════════════════════════════ */

/* ── Reset inherited cruft ──────────────────────────────────── */
body {
  background: #fff !important;
  color: #0f172a !important;
  display: block !important;
  line-height: 1.6 !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Container ──────────────────────────────────────────────── */
.pf-container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Header ─────────────────────────────────────────────────── */
.pf-landing-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  height: 68px;
  display: flex;
  align-items: center;
}
body header.pf-landing-header { position: fixed !important; }
.pf-landing-header + * { margin-top: 0; }

.pf-landing-header .pf-container {
  display: flex;
  align-items: center;
  width: 100%;
}

.pf-landing-logo {
  font-size: 22px;
  font-weight: 700;
  color: #02c0e7;
  letter-spacing: -0.02em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.pf-landing-logo-img {
  height: 34px;
  width: auto;
}

.pf-landing-nav {
  display: flex;
  gap: 36px;
  flex: 1;
  justify-content: center;
}

.pf-landing-nav a {
  color: #475569;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.2s;
  padding: 4px 0;
}
.pf-landing-nav a:hover { color: #02c0e7; }

.pf-landing-actions {
  display: flex;
  gap: 10px;
}

/* ── Buttons ────────────────────────────────────────────────── */
.pf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
  line-height: 1.4;
}

.pf-btn-lg { padding: 14px 32px; font-size: 16px; border-radius: 12px; }
.pf-btn-block { display: flex; width: 100%; }

.pf-btn-primary {
  background: #02c0e7;
  border-color: #02c0e7;
  color: #fff;
  box-shadow: 0 1px 2px rgba(2,192,231,0.2);
}
.pf-btn-primary:hover {
  background: #01a3c4;
  border-color: #01a3c4;
  box-shadow: 0 4px 12px rgba(2,192,231,0.3);
  transform: translateY(-1px);
}

/* header overrides */
.pf-landing-header .pf-btn-outline {
  background: transparent;
  border-color: #e2e8f0;
  color: #334155;
}
.pf-landing-header .pf-btn-outline:hover {
  border-color: #02c0e7;
  color: #02c0e7;
  background: #e0f9fd;
}
.pf-landing-header .pf-btn-primary {
  background: #02c0e7;
  border-color: #02c0e7;
  color: #fff;
}
.pf-landing-header .pf-btn-primary:hover { background: #01a3c4; }

/* hero & section buttons */
.pf-hero .pf-btn-primary,
.pf-section .pf-btn-primary {
  background: #02c0e7;
  border: 2px solid #02c0e7;
  color: #fff;
}
.pf-hero .pf-btn-primary:hover,
.pf-section .pf-btn-primary:hover {
  background: #01a3c4;
  border-color: #01a3c4;
}
.pf-hero .pf-btn-outline,
.pf-section .pf-btn-outline {
  background: #fff;
  border: 2px solid #e2e8f0;
  color: #334155;
}
.pf-hero .pf-btn-outline:hover,
.pf-section .pf-btn-outline:hover {
  border-color: #02c0e7;
  color: #02c0e7;
  background: #f5fdff;
}

/* ── Hero ───────────────────────────────────────────────────── */
.pf-hero {
  padding: 160px 0 120px;
  text-align: center;
  background-image: url('/assets/img/graph.png'), linear-gradient(175deg, #f5fdff 0%, #e0f9fd 40%, #fff 100%);
  background-position: center 10px, 0 0;
  background-repeat: no-repeat, no-repeat;
  position: relative;
  overflow: hidden;
}

.pf-hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(2,192,231,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.pf-hero::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(2,192,231,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.pf-hero-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pf-hero h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.12;
  color: #0f172a;
  margin: 0 0 24px;
  letter-spacing: -0.03em;
}

.pf-hero-highlight {
  background: linear-gradient(135deg, #02c0e7, #01d4f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pf-hero-subtitle {
  font-size: 18px;
  color: #64748b;
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 40px;
}

.pf-hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.pf-hero-note {
  font-size: 16px;
  color: #94a3b8;
  margin: 0;
}

/* ── Sections ───────────────────────────────────────────────── */
.pf-section {
  padding: 60px 0;
}
.pf-section-alt {
  background: #f8fafc;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}
.pf-section-title {
  font-size: 34px;
  font-weight: 700;
  text-align: center;
  color: #0f172a;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

/* ── Features ───────────────────────────────────────────────── */
.pf-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.pf-feature-card {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 18px;
  padding: 38px 28px 32px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: left;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.pf-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.07);
}

.pf-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 22px;
  background: #e0f9fd;
  color: #02c0e7;
}
.pf-feature-icon svg {
  width: 26px;
  height: 26px;
}

.pf-feature-card h3 {
  font-size: 17px;
  font-weight: 650;
  color: #0f172a;
  margin: 0 0 10px;
}
.pf-feature-card p {
  font-size: 14.5px;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* ── How it works (Steps) ───────────────────────────────────── */
.pf-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
  margin-top: 52px;
  position: relative;
}

/* connector line */
.pf-steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 1.5px;
  background: linear-gradient(to right, #e2e8f0, #cbd5e1, #e2e8f0);
  z-index: 0;
}

.pf-step {
  padding: 0 20px 32px;
  position: relative;
  z-index: 1;
}

.pf-step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #e2e8f0;
  color: #02c0e7;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative;
  z-index: 1;
}
.pf-step:hover .pf-step-number {
  border-color: #02c0e7;
  box-shadow: 0 0 0 8px rgba(2,192,231,0.06);
}

.pf-step h3 {
  font-size: 17px;
  font-weight: 650;
  color: #0f172a;
  margin: 0 0 8px;
}
.pf-step p {
  font-size: 14.5px;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
  max-width: 220px;
  margin: 0 auto;
}

/* ── Pricing ────────────────────────────────────────────────── */
.pf-pricing-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  max-width: 700px;
  margin: 52px auto 0;
  flex-wrap: wrap;
}
.pf-pricing-grid .pf-pricing-card {
  flex: 0 1 360px;
}
.pf-pricing-grid .pf-pricing-card-featured {
  flex: 0 1 500px;
  max-width: 500px;
}

.pf-pricing-card {
  background: #fff;
  border: 1.5px solid #f1f5f9;
  border-radius: 20px;
  padding: 44px 32px 36px;
  text-align: center;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pf-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
}

.pf-pricing-card-featured {
  border-color: #02c0e7;
  box-shadow: 0 4px 24px rgba(2,192,231,0.1);
  background: #fff;
}

.pf-pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #02c0e7;
  color: #fff;
  padding: 6px 22px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(2,192,231,0.3);
}

.pf-pricing-card h3 {
  font-size: 21px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 18px;
}

.pf-pricing-price {
  font-size: 48px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
  letter-spacing: -0.02em;
}

.pf-pricing-period {
  font-size: 14px;
  color: #94a3b8;
  margin: 8px 0 28px;
}

.pf-pricing-features {
  margin: 0 0 32px;
  text-align: left;
  font-size: 14.5px;
  color: #475569;
  line-height: 1.6;
}
.pf-pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pf-pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid #f8fafc;
}
.pf-pricing-features li:last-child { border-bottom: none; }
.pf-pricing-features ul li::before {
  content: "✓";
  display: inline-block;
  color: #22c55e;
  font-weight: 700;
  font-size: 13px;
  margin-right: 10px;
}
.pf-pricing-card .pf-btn {
  font-size: 15px;
  padding: 12px 28px;
}

/* ── CTA section ────────────────────────────────────────────── */
.pf-cta-section {
  text-align: center;
  background: linear-gradient(150deg, #02c0e7, #01a3c4);
  color: #fff;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.pf-cta-section::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.pf-cta-section h2 {
  font-size: 38px;
  font-weight: 800;
  margin: 0 0 16px;
  color: #fff;
  letter-spacing: -0.02em;
  position: relative;
}
.pf-cta-section p {
  font-size: 18px;
  margin: 0 0 36px;
  opacity: 0.85;
  line-height: 1.6;
  position: relative;
}
.pf-cta-section .pf-btn-primary {
  background: #fff !important;
  color: #02c0e7 !important;
  border-color: #fff !important;
  font-size: 16px;
  padding: 15px 36px;
  border-radius: 12px;
  position: relative;
}
.pf-cta-section .pf-btn-primary:hover {
  background: #e0f9fd !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ── Footer ─────────────────────────────────────────────────── */
footer.pf-landing-footer {
  text-align: center;
  padding: 28px 0;
  font-size: 13.5px;
  color: #94a3b8;
  border-top: 1px solid #f1f5f9;
  position: static;
  background: #fff;
}

/* ── Shared PF button overrides on landing ──────────────────── */
.pf-landing-header .pf-btn,
.pf-hero .pf-btn,
.pf-section .pf-btn {
  font-family: inherit;
}

/* ── Gallery ────────────────────────────────────────────────── */
.pf-gallery-track {
  overflow: hidden;
  margin-top: 44px;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.pf-gallery-track:active { cursor: grabbing; }
.pf-gallery-inner {
  display: flex;
  gap: 20px;
  transition: transform 0.6s ease;
}
.pf-gallery-item {
  flex: 0 0 280px;
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2e8f0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.pf-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}
.pf-gallery-item img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-bottom: 1px solid #f1f5f9;
}
.pf-gallery-caption {
  display: block;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 550;
  color: #334155;
  text-align: center;
}

/* ── Lightbox ───────────────────────────────────────────────── */
.pf-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px;
}
.pf-lightbox.pf-lightbox-open { display: flex; }
.pf-lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 14px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}
.pf-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.15s;
}
.pf-lightbox-close:hover { background: rgba(255,255,255,0.25); }
.pf-lightbox-close svg { width: 22px; height: 22px; }
.pf-lightbox-prev,
.pf-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.15s;
  z-index: 1;
}
.pf-lightbox-prev { left: 16px; }
.pf-lightbox-next { right: 16px; }
.pf-lightbox-prev:hover,
.pf-lightbox-next:hover { background: rgba(255,255,255,0.25); }
.pf-lightbox-prev svg,
.pf-lightbox-next svg { width: 24px; height: 24px; }
@media (max-width: 768px) {
  .pf-lightbox-prev { left: 8px; }
  .pf-lightbox-next { right: 8px; }
}
.pf-lightbox-caption {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin-top: 20px;
  opacity: 0.8;
}

/* ── Legal Pages ────────────────────────────────────────────── */
.pf-legal-operator { margin-bottom: 48px; }
.pf-legal-operator h2,
.pf-legal-docs h2 {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
}
.pf-legal-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px 28px;
  line-height: 1.8;
}
.pf-legal-card p { margin: 0 0 8px; }
.pf-legal-card p:last-child { margin-bottom: 0; }

.pf-legal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.pf-legal-doc-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 28px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pf-legal-doc-card:hover {
  border-color: #02c0e7;
  box-shadow: 0 4px 16px rgba(2,192,231,0.08);
}
.pf-legal-doc-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}
.pf-legal-doc-card p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}
.pf-legal-doc-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #e0f9fd;
  color: #02c0e7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pf-legal-doc-icon svg {
  width: 22px;
  height: 22px;
}

/* ── Legal Document Content ─────────────────────────────────── */
.pf-legal-doc-content {
  max-width: 800px;
  font-size: 15px;
  line-height: 1.75;
  color: #334155;
}
.pf-legal-doc-content h2 {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 36px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e2e8f0;
}
.pf-legal-doc-content h3 {
  font-size: 17px;
  font-weight: 600;
  color: #0f172a;
  margin: 28px 0 12px;
}
.pf-legal-doc-content p {
  margin: 0 0 12px;
}
.pf-legal-doc-content ul,
.pf-legal-doc-content ol {
  margin: 0 0 16px;
  padding-left: 24px;
}
.pf-legal-doc-content li {
  margin-bottom: 6px;
}
.pf-legal-doc-content a {
  color: #02c0e7;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.pf-legal-doc-content a:hover {
  color: #0294b0;
}
.pf-legal-doc-meta {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 24px;
}

.pf-legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}
.pf-legal-table th,
.pf-legal-table td {
  border: 1px solid #e2e8f0;
  padding: 12px 16px;
  text-align: left;
  vertical-align: top;
}
.pf-legal-table th {
  background: #f8fafc;
  font-weight: 600;
  color: #0f172a;
}
.pf-legal-table ul {
  margin: 0;
  padding-left: 18px;
}

@media (max-width: 768px) {
  .pf-legal-grid {
    grid-template-columns: 1fr;
  }
  .pf-legal-doc-content {
    font-size: 14px;
  }
}

/* ── Hamburger ──────────────────────────────────────────────── */
.pf-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}
.pf-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #334155;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.pf-menu-open .pf-hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.pf-menu-open .pf-hamburger span:nth-child(2) {
  opacity: 0;
}
.pf-menu-open .pf-hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile overlay ─────────────────────────────────────────── */
.pf-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.4);
  z-index: 1099;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.pf-menu-open .pf-mobile-overlay { display: block; opacity: 1; }

/* ── Mobile drawer ──────────────────────────────────────────── */
.pf-mobile-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  max-width: 85vw;
  height: 100vh;
  background: #fff;
  z-index: 1100;
  padding: 24px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: right 0.3s ease;
  box-shadow: -4px 0 24px rgba(0,0,0,0.08);
}
.pf-mobile-drawer-close {
  align-self: flex-end;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: color 0.15s;
}
.pf-mobile-drawer-close:hover { color: #334155; }
.pf-mobile-drawer-close svg {
  width: 22px;
  height: 22px;
}
.pf-menu-open .pf-mobile-drawer { right: 0; }

.pf-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pf-mobile-nav a {
  display: block;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  color: #334155;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.15s, color 0.15s;
}
.pf-mobile-nav a:hover,
.pf-mobile-nav a:active {
  background: #e0f9fd;
  color: #02c0e7;
}
.pf-mobile-actions {
  margin-top: auto;
  padding-bottom: 32px;
}

/* ═══════════════════════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .pf-steps::before { left: 14%; right: 14%; }
}

@media (max-width: 900px) {
  .pf-features-grid { grid-template-columns: repeat(2, 1fr); }
  .pf-steps { grid-template-columns: repeat(2, 1fr); }
  .pf-steps::before { display: none; }
}

@media (max-width: 768px) {
  .pf-hero { padding: 130px 0 80px; }
  .pf-hero h1 { font-size: 36px; }
  .pf-hero-subtitle { font-size: 16px; }
  .pf-section { padding: 72px 0; }
  .pf-section-title { font-size: 28px; }
  .pf-landing-nav { display: none; }
  .pf-cta-desktop { display: none; }
  .pf-hamburger { display: flex; margin-left: 16px; }
  .pf-landing-header .pf-container { justify-content: space-between; }
  .pf-hero-cta { flex-direction: column; align-items: stretch; }
  .pf-hero-cta .pf-btn { text-align: center; }
  .pf-cta-section { padding: 72px 0; }
  .pf-cta-section h2 { font-size: 28px; }
  .pf-pricing-grid { max-width: 380px; }
  .pf-features-grid { margin-top: 36px; }
  .pf-steps { margin-top: 36px; gap: 16px; }
}

@media (max-width: 480px) {
  .pf-hero h1 { font-size: 28px; }
  .pf-section-title { font-size: 24px; }
  .pf-features-grid { grid-template-columns: 1fr; }
  .pf-steps { grid-template-columns: 1fr; }
  .pf-feature-card { padding: 28px 22px 24px; }
  .pf-pricing-card { padding: 32px 20px 28px; }
  .pf-pricing-price { font-size: 38px; }
  .pf-container { padding: 0 18px; }
}

@media (max-width: 500px) {
  .pf-pricing-grid .pf-pricing-card-featured {
    flex-basis: 100%;
    max-width: 100%;
  }
}
