/* ═══════════════════════════════════════════════════════════════
   HonlapTér – style.css
   Mentés: assets/css/style.css
   ═══════════════════════════════════════════════════════════════ */

/* ── CSS változók ─────────────────────────────────────────────── */
:root {
  --bg:        #070711;
  --s1:        #0d0d1a;
  --s2:        #13131f;
  --s3:        #1a1a2e;
  --border:    rgba(255,255,255,.07);
  --primary:   #6366f1;
  --p400:      #818cf8;
  --secondary: #10b981;
  --s400:      #34d399;
  --accent:    #8b5cf6;
  --nav-h:     4rem;
  --ease:      cubic-bezier(.4,0,.2,1);
}
@media (min-width:1024px) {
  :root { --nav-h: 5rem; }
}

/* ── Reset & alap ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-padding-top: var(--nav-h);
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg);
  color: #fff;
  overflow-x: hidden;
  min-height: 100vh;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a { color: inherit; text-decoration: none; }

/* ── Scrollbar ────────────────────────────────────────────────── */
::-webkit-scrollbar       { width: 5px; }
::-webkit-scrollbar-track { background: var(--s1); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--p400); }

/* ── Focus ────────────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ══════════════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════════════ */
#navbar {
  background: transparent;
}
#navbar.scrolled {
  background: rgba(7,7,17,.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 4px 30px rgba(0,0,0,.4);
}

/* ══════════════════════════════════════════════════════════════
   TYPOGRAPHY HELPERS
   ══════════════════════════════════════════════════════════════ */
.grad-text {
  background: linear-gradient(135deg, #818cf8 0%, #10b981 50%, #a78bfa 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradShift 5s ease infinite;
  display: inline-block;
}
@keyframes gradShift {
  0%,100% { background-position: 0 50%; }
  50%     { background-position: 100% 50%; }
}

.lc2 { overflow:hidden; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; }
.lc3 { overflow:hidden; display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; }

/* ══════════════════════════════════════════════════════════════
   BACKGROUNDS
   ══════════════════════════════════════════════════════════════ */
.grid-pattern {
  background-image:
    linear-gradient(rgba(99,102,241,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,.055) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  will-change: transform;
}

/* ══════════════════════════════════════════════════════════════
   PAGE HERO (belső oldalak fejléce)
   ══════════════════════════════════════════════════════════════ */
.page-hero {
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 4rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media (max-width:768px) {
  .page-hero-bg { background-attachment: scroll; }
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,7,17,.92) 0%, rgba(13,13,26,.88) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.page-hero-content h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.025em;
  margin-bottom: .75rem;
}

.page-hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.62);
  line-height: 1.75;
  margin-top: .75rem;
}

/* ══════════════════════════════════════════════════════════════
   SECTION BADGE
   ══════════════════════════════════════════════════════════════ */
.s-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem 1rem;
  border-radius: 999px;
  border: 1px solid;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: .01em;
}
.s-badge.p { background: rgba(99,102,241,.12);  border-color: rgba(99,102,241,.3);  color: #818cf8; }
.s-badge.s { background: rgba(16,185,129,.12);  border-color: rgba(16,185,129,.3);  color: #34d399; }
.s-badge.a { background: rgba(139,92,246,.12);  border-color: rgba(139,92,246,.3);  color: #a78bfa; }
.s-badge.r { background: rgba(239,68,68,.12);   border-color: rgba(239,68,68,.3);   color: #f87171; }

/* ══════════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════════ */
.btn-p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .875rem 2rem;
  border-radius: 999px;
  font-size: .9375rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border: none;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  white-space: nowrap;
  font-family: inherit;
}
.btn-p:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(99,102,241,.45);
}
.btn-p:active { transform: translateY(-1px); }

.btn-o {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .875rem 2rem;
  border-radius: 999px;
  font-size: .9375rem;
  font-weight: 600;
  text-decoration: none;
  color: rgba(255,255,255,.85);
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
  cursor: pointer;
  transition: transform .3s var(--ease), background .3s, border-color .3s;
  white-space: nowrap;
  font-family: inherit;
}
.btn-o:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.4);
}
.btn-o:active { transform: translateY(-1px); }

/* ══════════════════════════════════════════════════════════════
   CARDS
   ══════════════════════════════════════════════════════════════ */
.card {
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  transition: border-color .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}
.card:hover {
  border-color: rgba(99,102,241,.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(99,102,241,.12);
}

/* ══════════════════════════════════════════════════════════════
   GSAP REVEAL  –  FONTOS: alapból látható, JS elrejti majd
   ══════════════════════════════════════════════════════════════ */
.reveal-up {
  /* JS betöltés előtt látható */
  opacity: 1;
  transform: translateY(0);
}
/* Ha a JS betöltött, a GSAP .gsap-ready osztályt rakja body-ra */
body.gsap-ready .reveal-up {
  opacity: 0;
  transform: translateY(40px);
}

/* ══════════════════════════════════════════════════════════════
   SERVICE CARDS
   ══════════════════════════════════════════════════════════════ */
.svc-card {
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem;
  transition: border-color .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99,102,241,.07), transparent 60%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.svc-card:hover::before { opacity: 1; }
.svc-card:hover {
  border-color: rgba(99,102,241,.35);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(99,102,241,.14);
}
.svc-icon {
  width: 3rem;
  height: 3rem;
  border-radius: .875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  margin-bottom: 1.25rem;
  transition: transform .3s var(--ease);
  border: 1px solid;
}
.svc-card:hover .svc-icon { transform: scale(1.15) rotate(-5deg); }

/* ══════════════════════════════════════════════════════════════
   PORTFOLIO
   ══════════════════════════════════════════════════════════════ */
.port-card {
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: border-color .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.port-card:hover {
  border-color: rgba(99,102,241,.35);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(99,102,241,.16);
}

.port-img {
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--s2);
  position: relative;
  flex-shrink: 0;
}
.port-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
  display: block;
}
.port-card:hover .port-img img { transform: scale(1.07); }

/* Overlay a képen hover esetén */
.port-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,7,17,.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .4s;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}
.port-card:hover .port-img-overlay { opacity: 1; }

/* ── Portfolio Modal ──────────────────────────────────────────── */
#port-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
#port-modal.open {
  opacity: 1;
  visibility: visible;
}
#port-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
#port-modal-inner {
  position: relative;
  z-index: 1;
  background: var(--s1);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 1.5rem;
  width: 100%;
  max-width: 900px;
  max-height: 92vh;
  overflow-y: auto;
  transform: translateY(28px) scale(.97);
  transition: transform .35s var(--ease);
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--s2);
}
#port-modal.open #port-modal-inner {
  transform: translateY(0) scale(1);
}

/* Modal képek grid */
.pm-img-main {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: .75rem;
  display: block;
  background: var(--s2);
}
.pm-img-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .75rem;
  margin-top: .75rem;
}
.pm-img-tablet {
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: .75rem;
  width: 100%;
  background: var(--s2);
}
.pm-img-mobile {
  width: 80px;
  aspect-ratio: 9/16;
  object-fit: cover;
  border-radius: .75rem;
  flex-shrink: 0;
  background: var(--s2);
}
@media (min-width: 640px) {
  .pm-img-mobile { width: 110px; }
}

/* ══════════════════════════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════════════════════════ */
.p-card {
  display: flex;
  flex-direction: column;
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
}
.p-card:hover {
  transform: translateY(-10px);
  border-color: rgba(99,102,241,.4);
  box-shadow: 0 25px 60px rgba(99,102,241,.18);
}
.p-card.featured {
  border-color: rgba(99,102,241,.55);
  border-width: 2px;
  background: rgba(99,102,241,.055);
  box-shadow: 0 15px 50px rgba(99,102,241,.15);
}
.p-body { flex: 1; }

.p-amount {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(135deg, #818cf8, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .25rem;
}
.p-amount.sm { font-size: 1.75rem; }

.p-original {
  font-size: 1.1rem;
  color: rgba(255,255,255,.35);
  text-decoration: line-through;
  font-weight: 600;
  margin-bottom: .25rem;
}
.p-discount {
  display: inline-block;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  padding: .2rem .6rem;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 700;
  margin-left: .4rem;
  vertical-align: middle;
}

.p-features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
.p-features-list li {
  padding: .7rem 0;
  color: rgba(255,255,255,.75);
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: .9375rem;
  line-height: 1.5;
  transition: color .2s;
}
.p-features-list li:last-child { border-bottom: none; }
.p-features-list li:hover { color: #fff; }
.p-features-list li::before {
  content: "✓";
  color: var(--secondary);
  font-weight: 700;
  font-size: .75rem;
  min-width: 22px;
  height: 22px;
  background: rgba(16,185,129,.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .1rem;
  transition: transform .3s var(--ease), background .3s;
}
.p-features-list li:hover::before {
  transform: scale(1.2) rotate(360deg);
  background: rgba(16,185,129,.28);
}

/* Mobil toggle */
.p-toggle { display: none; }
@media (max-width:767px) {
  .p-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: .7rem 1.25rem;
    margin-bottom: .75rem;
    background: rgba(99,102,241,.08);
    border: 1px solid rgba(99,102,241,.25);
    border-radius: 999px;
    color: #fff;
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    transition: background .3s;
    font-family: inherit;
  }
  .p-toggle:hover { background: rgba(99,102,241,.15); }
  .p-toggle .ti  { transition: transform .3s ease; display: inline-block; }
  .p-toggle.active .ti { transform: rotate(180deg); }

  .p-features-list {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-bottom: 0;
    transition: max-height .42s var(--ease), opacity .42s ease;
  }
  .p-features-list.open {
    max-height: 2000px;
    opacity: 1;
    margin-bottom: 1.5rem;
  }
}

/* Info box */
.p-info-box {
  background: rgba(255,255,255,.025);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  margin: 1.5rem 0;
  transition: transform .35s var(--ease), box-shadow .35s, background .35s;
}
.p-info-box:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 40px rgba(99,102,241,.12);
  background: rgba(99,102,241,.04);
}
.p-info-box.danger { border-left-color: #ef4444; }
.p-info-box h4 { color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: .6rem; }
.p-info-box p  { color: rgba(255,255,255,.65); font-size: .9375rem; line-height: 1.75; margin: 0; }

/* ══════════════════════════════════════════════════════════════
   CONTACT FORM
   ══════════════════════════════════════════════════════════════ */
.f-label {
  display: block;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  margin-bottom: .5rem;
}
.f-field {
  background: var(--s2);
  border: 1px solid var(--border);
  border-radius: .875rem;
  padding: .875rem 1.125rem;
  color: #fff;
  width: 100%;
  font-size: .9375rem;
  font-family: inherit;
  outline: none;
  transition: border-color .25s, box-shadow .25s;
  resize: vertical;
  appearance: none;
  -webkit-appearance: none;
}
.f-field:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99,102,241,.18);
}
.f-field::placeholder { color: rgba(255,255,255,.28); }
.f-field.error { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,.15); }

/* Select specifikus */
select.f-field {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
  cursor: pointer;
}
select.f-field option { background: var(--s2); color: #fff; }

.f-error-msg { color: #f87171; font-size: .8rem; margin-top: .35rem; display: none; }
.f-error-msg.show { display: block; }

/* ══════════════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════════════ */
.faq-item {
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color .3s;
}
.faq-item:has([aria-expanded="true"]) {
  border-color: rgba(99,102,241,.35);
}
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: background .25s;
}
.faq-trigger:hover { background: rgba(255,255,255,.03); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(99,102,241,.12);
  border: 1px solid rgba(99,102,241,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .35s ease, background .25s;
}
.faq-trigger[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  background: rgba(99,102,241,.25);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease);
}
.faq-answer.open { max-height: 500px; }
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: rgba(255,255,255,.62);
  font-size: .9375rem;
  line-height: 1.75;
}

/* ══════════════════════════════════════════════════════════════
   STATISZTIKA
   ══════════════════════════════════════════════════════════════ */
.stat-box { text-align: center; padding: 1.5rem 1rem; }
.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #818cf8, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: .875rem; color: rgba(255,255,255,.45); margin-top: .4rem; }

/* ══════════════════════════════════════════════════════════════
   STEP / FOLYAMAT
   ══════════════════════════════════════════════════════════════ */
.step-line {
  position: absolute;
  top: 1.75rem;
  left: calc(50% + 1.75rem);
  right: calc(-50% + 1.75rem);
  height: 1px;
  background: linear-gradient(90deg, rgba(99,102,241,.4), rgba(99,102,241,.1));
  pointer-events: none;
}
@media (max-width:767px) { .step-line { display: none; } }

/* ══════════════════════════════════════════════════════════════
   TECH BADGE
   ══════════════════════════════════════════════════════════════ */
.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem .875rem;
  background: var(--s2);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: .8125rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  transition: border-color .25s, color .25s, background .25s;
}
.tech-badge:hover {
  border-color: rgba(99,102,241,.35);
  color: #fff;
  background: rgba(99,102,241,.08);
}

/* ══════════════════════════════════════════════════════════════
   REVIEW KÁRTYÁK
   ══════════════════════════════════════════════════════════════ */
.review-card {
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.75rem;
  transition: border-color .4s var(--ease), transform .4s var(--ease), box-shadow .4s;
}
.review-card:hover {
  border-color: rgba(99,102,241,.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(99,102,241,.1);
}
.stars { color: #fbbf24; letter-spacing: .1em; }

/* ══════════════════════════════════════════════════════════════
   TOAST
   ══════════════════════════════════════════════════════════════ */
#toast {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 9999;
  background: var(--s1);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  transform: translateY(120%);
  opacity: 0;
  transition: transform .4s var(--ease), opacity .4s ease;
  max-width: 340px;
  font-size: .9375rem;
  pointer-events: none;
}
#toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
#toast.success { border-color: rgba(16,185,129,.35); }
#toast.error   { border-color: rgba(239,68,68,.35);  }

/* ══════════════════════════════════════════════════════════════
   COOKIE BANNER
   ══════════════════════════════════════════════════════════════ */
#cookie-banner         { display: none; }
#cookie-banner.show    { display: block; }

/* ══════════════════════════════════════════════════════════════
   UTILITIES
   ══════════════════════════════════════════════════════════════ */
.glow-p { box-shadow: 0 0 30px rgba(99,102,241,.3); }
.glow-s { box-shadow: 0 0 30px rgba(16,185,129,.3); }

.section-divider {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 999px;
  margin: 1.25rem auto 0;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE HELPERS
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 639px) {
  .btn-p, .btn-o { width: 100%; justify-content: center; }
  .p-card { padding: 1.75rem 1.25rem; }
  .p-amount { font-size: 2rem; }
}
