/* Publitruck - Public Website Styles */

:root {
  --blue: #326cf4;
  --dark: #222;
  --white: #fff;
  --gray-light: #f5f7fa;
  --gray-mid: #6b7280;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --transition: 0.25s ease;
  --header-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 5px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: #2558d4;
  border-color: #2558d4;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(50, 108, 244, 0.35);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1.05rem;
}

.section-cta {
  margin-top: 48px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline-blue:hover {
  background: var(--blue);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--blue);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  position: relative;
}

.logo img { height: 30px; width: auto; }

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--blue); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  margin: 6px 0;
  transition: var(--transition);
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero */
.hero {
  background: var(--white);
  padding: calc(var(--header-h) + 60px) 0 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--dark);
}

.hero-content h1 span { color: var(--blue); }

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--gray-mid);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-image { position: relative; }

.hero-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
}

.hero-image-driver img {
  max-height: 520px;
  object-fit: cover;
  object-position: 50% 20%;
}

.hero-badge {
  position: absolute;
  bottom: -16px;
  left: 16px;
  background: var(--blue);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 24px rgba(50, 108, 244, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Sections */
section { padding: 96px 0; scroll-margin-top: var(--header-h); }
section.marketplace-page,
section.wizard-page {
  padding: 16px 0 40px;
  padding-top: calc(var(--header-h, 72px) + 12px);
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  max-width: 600px;
  opacity: 0.85;
}

/* Problem */
.problem {
  background: var(--dark);
  color: var(--white);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.problem-text .section-label { color: var(--blue); }

.problem-list {
  list-style: none;
  margin: 32px 0;
}

.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.problem-list .icon-x {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(255, 80, 80, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff5050;
  font-size: 0.75rem;
}

.solution-box {
  background: rgba(50, 108, 244, 0.15);
  border: 1px solid rgba(50, 108, 244, 0.3);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 24px;
}

.solution-box p { font-size: 1.05rem; }
.solution-box strong { color: var(--blue); }

.problem-image img {
  border-radius: var(--radius);
  max-width: 320px;
  margin: 0 auto;
}

.problem-image-wide img {
  max-width: 100%;
  width: 100%;
  box-shadow: var(--shadow);
}

/* How it works */
.how {
  background: var(--blue);
  color: var(--white);
  text-align: center;
}

.how .section-label { color: rgba(255,255,255,0.7); }
.how .section-subtitle { margin: 0 auto 56px; opacity: 0.9; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
}

.step-icon {
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.3rem;
  color: var(--blue);
}

.step-number {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
  margin-bottom: 8px;
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.5;
}

/* Truckers */
.truckers { background: var(--white); }

.truckers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.truckers-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
}

.truckers-content .section-label { color: var(--blue); }

.truckers-content p {
  font-size: 1.1rem;
  color: var(--gray-mid);
  margin: 20px 0 32px;
}

.truckers-perks {
  list-style: none;
  margin-bottom: 36px;
}

.truckers-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 500;
}

.truckers-perks li i {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
}

/* Landing camioneros */
.earn { background: var(--white); }

.earn-grid,
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.earn-copy .section-label,
.reqs .section-label,
.why-copy .section-label { color: var(--blue); }

.earn-copy p,
.reqs .section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-mid);
  margin-bottom: 16px;
}

.earn-image img,
.why-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
}

.earn-example {
  background: var(--gray-light);
  border: 1px solid rgba(50, 108, 244, 0.12);
  border-radius: var(--radius);
  padding: 24px;
  margin: 28px 0 32px;
}

.earn-example-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}

.earn-example-text {
  margin-bottom: 20px !important;
}

.earn-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}

.earn-stat {
  background: var(--white);
  border-radius: 10px;
  padding: 14px 12px;
}

.earn-stat span {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-mid);
  margin-bottom: 4px;
}

.earn-stat strong {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
}

.earn-stat.highlight {
  background: var(--blue);
}

.earn-stat.highlight span,
.earn-stat.highlight strong { color: var(--white); }

.earn-note {
  font-size: 0.85rem !important;
  margin: 0 !important;
}

.reqs {
  background: var(--gray-light);
  text-align: center;
}

.reqs .section-subtitle { margin: 0 auto 40px; }

.req-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  text-align: left;
  max-width: 920px;
  margin: 0 auto;
}

.req-list li {
  display: flex;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow);
}

.req-list i {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-top: 2px;
}

.req-list h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.req-list p {
  font-size: 0.9rem;
  color: var(--gray-mid);
  margin: 0;
}

.why { background: var(--white); }

.why-copy .section-title { margin-bottom: 24px; }

.why-list {
  list-style: none;
  margin-bottom: 36px;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 500;
}

.why-list i {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
}

.measure { background: var(--white); }

.measure-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.measure-copy .section-label { color: var(--blue); }

.measure-copy > p {
  font-size: 1.05rem;
  color: var(--gray-mid);
  margin-bottom: 24px;
}

.measure-method {
  background: var(--gray-light);
  border: 1px solid rgba(50, 108, 244, 0.12);
  border-radius: var(--radius);
  padding: 22px 20px;
  margin-top: 8px;
}

.measure-method h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.measure-method p {
  color: var(--gray-mid);
  font-size: 0.95rem;
  margin: 0;
}

.measure-visual {
  display: flex;
  justify-content: center;
}

.measure-visual img {
  max-width: 280px;
  width: 100%;
  transform: rotate(7deg);
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.18));
}

.coverage {
  background: var(--gray-light);
  text-align: center;
}

.coverage .section-label { color: var(--blue); }
.coverage .section-subtitle { margin: 0 auto 40px; }

.coverage-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

.coverage-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow);
}

.coverage-card i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.coverage-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.coverage-card p {
  color: var(--gray-mid);
  font-size: 0.95rem;
  margin: 0;
}

.coverage-note {
  margin: 32px 0 0;
  color: var(--gray-mid);
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 0 40px;
  text-align: left;
}

.price-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 24px 20px;
}

.price-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.price-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  margin: 0;
}

.price-card strong { color: var(--white); }

.faq-cta {
  margin-top: 56px;
  text-align: center;
  background: rgba(50, 108, 244, 0.15);
  border: 1px solid rgba(50, 108, 244, 0.3);
  border-radius: var(--radius);
  padding: 40px 24px;
}

.faq-cta h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 8px;
}

.faq-cta p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
}

/* FAQ */
.faq {
  background: var(--dark);
  color: var(--white);
}

.faq .section-label { color: var(--blue); }
.faq .section-subtitle { opacity: 0.8; margin-bottom: 48px; }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  text-align: left;
  padding: 24px 0;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font);
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 24px;
}

.faq-answer p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 280px;
}

.footer-brand img { height: 36px; }

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.5);
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }

.footer-col ul a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.social-links { display: flex; gap: 12px; }

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 0.9rem;
}
.social-links a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 20px 24px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-inner p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  flex: 1;
  min-width: 200px;
}

.cookie-inner a { color: var(--blue); text-decoration: underline; }

.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-actions .btn { padding: 10px 24px; font-size: 0.9rem; }

/* Legal pages */
.legal-page {
  padding: calc(var(--header-h) + 48px) 0 80px;
  background: var(--white);
  min-height: 80vh;
}

.legal-page h1 {
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: 800;
  margin-bottom: 8px;
}

.legal-page .legal-meta {
  color: var(--gray-mid);
  font-size: 0.9rem;
  margin-bottom: 40px;
}

.legal-page h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--dark);
}

.legal-page p, .legal-page li {
  color: var(--gray-mid);
  margin-bottom: 12px;
  line-height: 1.7;
}

.legal-page ul { padding-left: 24px; margin-bottom: 16px; }

/* Under construction */
.construction {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 48px) 24px 80px;
  background: var(--gray-light);
}

.construction-content h1 {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.construction-content p {
  color: var(--gray-mid);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.construction-icon {
  font-size: 3rem;
  margin-bottom: 24px;
  color: var(--blue);
}

/* Responsive */
@media (max-width: 1024px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }

  .hero {
    padding-top: calc(var(--header-h) + 32px);
    min-height: auto;
  }

  .hero-grid,
  .problem-grid,
  .truckers-grid,
  .earn-grid,
  .why-grid,
  .measure-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .coverage-cards,
  .price-cards { grid-template-columns: 1fr; }
  .measure-visual { order: -1; }

  .req-list { grid-template-columns: 1fr; }
  .earn-stats { grid-template-columns: 1fr; }
  .why-image { order: -1; }

  .hero-image { order: -1; }
  .truckers-image { order: -1; }

  .hero-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -12px;
    white-space: nowrap;
    font-size: 0.85rem;
    padding: 10px 16px;
  }

  .problem-image img { max-width: 260px; }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: calc(var(--header-h) + 24px) 24px 24px;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -4px 0 24px rgba(0,0,0,0.1);
    z-index: 1001;
    overflow-y: auto;
  }

  .nav.open { transform: translateX(0); }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  .nav-links a {
    display: block;
    padding: 16px 0;
    font-size: 1.05rem;
  }

  .nav-btn {
    margin-top: 24px;
    width: 100%;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 1002;
    flex-shrink: 0;
    margin-left: auto;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 999;
  }

  .nav-overlay.visible { display: block; }

  body.menu-open { overflow: hidden; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  section { padding: 56px 0; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; }

  .btn { padding: 5px 20px; font-size: 0.95rem; }

  .faq-question {
    font-size: 0.95rem;
    padding: 20px 0;
  }
}

/* Modal alerta publico */
.pt-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.pt-modal[hidden] { display: none; }
.pt-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(34, 34, 34, 0.55);
}
.pt-modal-card {
  position: relative;
  width: min(420px, 100%);
  background: var(--white);
  color: var(--dark);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
  padding: 28px 24px 24px;
  font-family: var(--font);
}
.pt-modal-card h3 {
  font-size: 1.15rem;
  margin: 0 0 8px;
}
.pt-modal-card p {
  color: var(--gray-mid);
  margin: 0 0 20px;
  font-size: 0.98rem;
}
.pt-modal-card .btn { min-width: 140px; }
.pt-modal-actions { display: flex; justify-content: flex-end; }
body.pt-modal-open { overflow: hidden; }
