/* ==========================================================================
   ProTransport Landing – Complete Redesign CSS
   Mobile-first · CSS Grid · clamp() · Clean specificity
   ========================================================================== */

/* --- Design Tokens --- */
:root {
  --c-red: #e63027;
  --c-red-dark: #c0221a;
  --c-red-glow: rgba(230, 48, 39, .35);
  --c-navy: #111827;
  --c-navy-deep: #0b1120;
  --c-gold: #f5a623;
  --c-green: #22c55e;
  --c-text: #1f2937;
  --c-text-light: #4b5563;
  --c-bg: #f8f9fc;
  --c-white: #ffffff;
  --c-border: #e5e7eb;
  --c-border-hover: #d1d5db;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.15);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-full: 999px;
  --font: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* --- Reset --- */
#protransport-landing *,
#protransport-landing *::before,
#protransport-landing *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#protransport-landing {
  font-family: var(--font);
  color: var(--c-text);
  font-size: 17px;
  line-height: 1.72;
  background: var(--c-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

#protransport-landing ul {
  list-style: none;
}

/* Links: scoped to text contexts only – buttons are NOT affected */
#protransport-landing p a,
#protransport-landing li a,
#protransport-landing span a {
  color: var(--c-red);
  text-decoration: underline;
  text-underline-offset: 2px;
}

#protransport-landing p a:hover,
#protransport-landing li a:hover,
#protransport-landing span a:hover {
  color: var(--c-red-dark);
}

/* --- Container --- */
.pt-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Section titles --- */
.pt-section-title {
  font-size: clamp(1.75rem, 4.5vw, 2.8rem);
  font-weight: 900;
  color: var(--c-navy);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.pt-section-sub {
  text-align: center;
  color: var(--c-text-light);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 640px;
  margin: 0 auto 64px;
  line-height: 1.7;
}

.pt-section-sub--light {
  color: rgba(255,255,255,.7);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.pt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .01em;
  cursor: pointer;
  border: none;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.4;
  min-height: 54px;
}

.pt-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: currentColor;
}

.pt-btn:hover { text-decoration: none; }

/* Primary (red) */
.pt-btn--primary {
  background: linear-gradient(135deg, var(--c-red) 0%, var(--c-red-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 16px var(--c-red-glow);
}

.pt-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--c-red-glow);
  color: #fff;
}

/* Dark (navy) */
.pt-btn--dark {
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-deep) 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(17, 24, 39, .25);
}

.pt-btn--dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(17, 24, 39, .4);
  color: #fff;
}

/* Ghost (transparent border on dark bg) */
.pt-btn--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.45);
}

.pt-btn--ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

.pt-btn--lg {
  padding: 20px 44px;
  font-size: 1.15rem;
  border-radius: var(--radius-lg);
  min-height: 64px;
}

.pt-btn--full { width: 100%; white-space: normal; }

@media (max-width: 480px) {
  .pt-btn { padding: 14px 24px; font-size: .95rem; min-height: 48px; }
  .pt-btn--lg { padding: 16px 28px; font-size: 1.02rem; min-height: 54px; }
}

/* ==========================================================================
   1. HERO
   ========================================================================== */
.pt-hero {
  position: relative;
  background: linear-gradient(150deg, var(--c-navy) 0%, var(--c-navy-deep) 50%, #1a0a0a 100%);
  padding: clamp(80px, 12vw, 150px) 0 clamp(70px, 10vw, 130px);
  overflow: hidden;
}

.pt-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(230,48,39,.15) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(245,166,35,.06) 0%, transparent 50%);
  pointer-events: none;
}

.pt-hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.pt-hero__badge {
  display: inline-block;
  background: rgba(230,48,39,.15);
  color: #ff7b73;
  font-size: .85rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  letter-spacing: .03em;
  border: 1px solid rgba(230,48,39,.25);
}

.pt-hero__headline {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.025em;
  max-width: 800px;
}

.pt-hero__headline em {
  color: var(--c-gold);
  font-style: normal;
}

.pt-hero__sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255,255,255,.78);
  max-width: 580px;
  line-height: 1.65;
}

/* Trust bar */
.pt-hero__trust {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.pt-hero__stars {
  display: flex;
  gap: 2px;
  color: var(--c-gold);
}

.pt-hero__stars svg {
  width: 20px;
  height: 20px;
}

.pt-hero__rating {
  font-weight: 800;
  color: #fff;
  font-size: 1.05rem;
}

.pt-hero__reviews {
  color: rgba(255,255,255,.55);
  font-size: .9rem;
}

/* Hero CTA */
.pt-hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  padding-top: 8px;
}

@media (max-width: 520px) {
  .pt-hero__cta-group {
    flex-direction: column;
    width: 100%;
    padding: 0 8px;
  }
  .pt-hero__cta-group .pt-btn { width: 100%; white-space: normal; }
}

/* ==========================================================================
   2. SOCIAL PROOF BAR
   ========================================================================== */
.pt-proof {
  background: var(--c-white);
  padding: 0;
  border-bottom: 1px solid var(--c-border);
}

.pt-proof__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}

.pt-proof__item {
  padding: 40px 24px;
  border-right: 1px solid var(--c-border);
}

.pt-proof__item:last-child {
  border-right: none;
}

.pt-proof__number {
  display: block;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 900;
  color: var(--c-red);
  letter-spacing: -.02em;
  line-height: 1.2;
}

.pt-proof__label {
  display: block;
  font-size: clamp(.78rem, 1.4vw, .9rem);
  color: var(--c-text-light);
  margin-top: 6px;
  line-height: 1.4;
}

@media (max-width: 480px) {
  .pt-proof__grid { grid-template-columns: 1fr; }
  .pt-proof__item { border-right: none; border-bottom: 1px solid var(--c-border); }
  .pt-proof__item:last-child { border-bottom: none; }
}

/* ==========================================================================
   3. SERVICES
   ========================================================================== */
.pt-services {
  padding: clamp(80px, 12vw, 130px) 0;
  background: var(--c-bg);
}

.pt-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.pt-card {
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 36px 30px;
  border: 1px solid var(--c-border);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pt-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-red);
}

.pt-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--c-red), #ff6b5b);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.pt-card__icon svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.pt-card__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--c-navy);
}

.pt-card__text {
  font-size: .95rem;
  color: var(--c-text-light);
  line-height: 1.7;
}

@media (min-width: 1024px) {
  .pt-services__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ==========================================================================
   4. WHY US
   ========================================================================== */
.pt-why {
  padding: clamp(80px, 12vw, 130px) 0;
  background: var(--c-white);
}

.pt-why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 36px;
}

.pt-why__tile {
  text-align: center;
  padding: 44px 28px;
  border-radius: var(--radius-lg);
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.pt-why__tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.pt-why__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--c-navy), #263347);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pt-why__icon svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
  fill: none;
}

.pt-why__tile h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: 10px;
}

.pt-why__tile p {
  font-size: .93rem;
  color: var(--c-text-light);
  line-height: 1.65;
}

@media (min-width: 900px) {
  .pt-why__grid { grid-template-columns: repeat(4, 1fr); }
}

/* ==========================================================================
   5. SEO TEXT
   ========================================================================== */
.pt-seo {
  padding: clamp(80px, 12vw, 130px) 0;
  background: var(--c-bg);
}

.pt-seo__wrap {
  max-width: 800px;
}

.pt-seo h2 {
  font-size: clamp(1.4rem, 3.5vw, 1.9rem);
  font-weight: 900;
  color: var(--c-navy);
  margin: 56px 0 20px;
  line-height: 1.3;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--c-red);
  display: inline-block;
}

.pt-seo h2:first-of-type {
  margin-top: 0;
}

.pt-seo h3 {
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-weight: 800;
  color: var(--c-text);
  margin: 40px 0 16px;
}

.pt-seo p {
  margin-bottom: 24px;
  color: #4b5563;
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  line-height: 1.9;
}

.pt-seo strong {
  color: var(--c-navy);
}

.pt-seo ul {
  margin: 16px 0 28px;
  padding: 20px 24px;
  background: var(--c-white);
  border-radius: var(--radius);
  border-left: 4px solid var(--c-red);
}

.pt-seo ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #374151;
  line-height: 1.6;
}

.pt-seo ul li:last-child { margin-bottom: 0; }

.pt-seo ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--c-green);
  font-weight: 700;
}

/* ==========================================================================
   6. PRICING
   ========================================================================== */
.pt-pricing {
  padding: clamp(80px, 12vw, 130px) 0;
  background: var(--c-navy);
}

.pt-pricing .pt-section-title {
  color: #fff;
}

.pt-pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.pt-price-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

.pt-price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

/* Featured card */
.pt-price-card--featured {
  border: 3px solid var(--c-red);
  box-shadow: 0 8px 32px rgba(230,48,39,.18);
  transform: scale(1.03);
}

.pt-price-card--featured:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 16px 50px rgba(230,48,39,.25);
}

.pt-price-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-red);
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.pt-price-card__head h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--c-navy);
}

.pt-price-card__price {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--c-red);
  padding: 16px 0;
  border-top: 2px solid var(--c-border);
  border-bottom: 2px solid var(--c-border);
}

.pt-price-card__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pt-price-card__list li {
  font-size: .95rem;
  color: #4b5563;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.pt-price-card__list li::before {
  content: '\2713';
  color: var(--c-green);
  font-weight: 700;
  flex-shrink: 0;
}

.pt-price-card .pt-btn {
  margin-top: auto;
}

.pt-pricing__note {
  text-align: center;
  color: rgba(255,255,255,.4);
  font-size: .84rem;
  margin-top: 28px;
}

@media (max-width: 767px) {
  .pt-pricing__grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
  .pt-price-card--featured { transform: none; }
  .pt-price-card--featured:hover { transform: translateY(-4px); }
}

@media (min-width: 1024px) {
  .pt-pricing__grid { grid-template-columns: repeat(4, 1fr); }
}

/* ==========================================================================
   7. CTA BAR
   ========================================================================== */
.pt-cta-bar {
  background: linear-gradient(135deg, var(--c-red) 0%, var(--c-red-dark) 100%);
  padding: clamp(56px, 8vw, 80px) 0;
}

.pt-cta-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.pt-cta-bar__text h2 {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 6px;
}

.pt-cta-bar__text p {
  color: rgba(255,255,255,.85);
  font-size: 1rem;
}

.pt-cta-bar__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.pt-cta-bar .pt-btn--primary {
  background: var(--c-white);
  color: var(--c-red);
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}

.pt-cta-bar .pt-btn--primary:hover {
  background: #f4f4f4;
  color: var(--c-red-dark);
}

.pt-cta-bar .pt-btn--ghost {
  border-color: rgba(255,255,255,.5);
}

@media (max-width: 700px) {
  .pt-cta-bar__inner {
    flex-direction: column;
    text-align: center;
  }
  .pt-cta-bar__actions {
    flex-direction: column;
    width: 100%;
  }
  .pt-cta-bar__actions .pt-btn { width: 100%; }
}

/* ==========================================================================
   8. FORM
   ========================================================================== */
.pt-form-section {
  padding: clamp(80px, 12vw, 130px) 0;
  background: var(--c-white);
}

.pt-form {
  max-width: 720px;
  margin: 0 auto;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 52px);
  box-shadow: var(--shadow);
}

.pt-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.pt-form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pt-form__group--full {
  margin-bottom: 20px;
}

.pt-form__label {
  font-size: .95rem;
  font-weight: 700;
  color: var(--c-navy);
}

.pt-req { color: var(--c-red); }

.pt-form__input,
.pt-form__textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--c-border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 1rem;
  color: var(--c-navy);
  background: var(--c-white);
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}

.pt-form__input:focus,
.pt-form__textarea:focus {
  outline: none;
  border-color: var(--c-red);
  box-shadow: 0 0 0 3px rgba(230,48,39,.1);
}

.pt-form__input::placeholder,
.pt-form__textarea::placeholder {
  color: #9ca3af;
}

.pt-form__textarea {
  resize: vertical;
  min-height: 120px;
}

/* Checkboxes */
.pt-form__checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pt-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: .93rem;
  color: var(--c-text);
  line-height: 1.5;
}

.pt-check__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.pt-check__box {
  width: 20px;
  height: 20px;
  border: 2px solid var(--c-border);
  border-radius: 5px;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  background: var(--c-white);
  transition: background .15s, border-color .15s;
}

.pt-check__input:checked + .pt-check__box {
  background: var(--c-red);
  border-color: var(--c-red);
}

.pt-check__input:checked + .pt-check__box::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.pt-check__input:focus-visible + .pt-check__box {
  box-shadow: 0 0 0 3px rgba(230,48,39,.15);
}

/* Form messages */
.pt-form__msg {
  margin-bottom: 16px;
  font-size: .95rem;
  min-height: 0;
  border-radius: var(--radius);
}

.pt-form__msg.is-success {
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.25);
  color: #166534;
  padding: 14px 18px;
  font-weight: 600;
}

.pt-form__msg.is-error {
  background: rgba(239,68,68,.08);
  border: 1px solid rgba(239,68,68,.25);
  color: #991b1b;
  padding: 14px 18px;
}

@media (max-width: 600px) {
  .pt-form__row { grid-template-columns: 1fr; }
  .pt-form { padding: 24px 18px; }
}

/* ==========================================================================
   9. LOCAL SEO
   ========================================================================== */
.pt-local {
  padding: clamp(80px, 12vw, 130px) 0;
  background: var(--c-bg);
}

.pt-local__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
}

.pt-local__card {
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1px solid var(--c-border);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.pt-local__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--c-red);
}

.pt-local__pin {
  width: 36px;
  height: 36px;
  fill: var(--c-red);
}

.pt-local__card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--c-navy);
}

.pt-local__card p {
  font-size: .88rem;
  color: var(--c-text-light);
  line-height: 1.6;
}

@media (min-width: 1024px) {
  .pt-local__grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 600px) {
  .pt-local__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .pt-local__card { padding: 18px 14px; gap: 8px; }
  .pt-local__pin { width: 28px; height: 28px; }
  .pt-local__card h3 { font-size: .95rem; }
  .pt-local__card p { font-size: .8rem; }
}

/* ==========================================================================
   10. FAQ
   ========================================================================== */
.pt-faq {
  padding: clamp(80px, 12vw, 130px) 0;
  background: var(--c-white);
}

.pt-faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pt-faq__item {
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--c-white);
  transition: border-color .2s, box-shadow .2s;
}

.pt-faq__item:hover {
  border-color: var(--c-border-hover);
  box-shadow: var(--shadow-sm);
}

.pt-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  background: var(--c-white) !important;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--c-navy) !important;
  text-align: left;
  transition: background .2s;
  line-height: 1.45;
}

#protransport-landing .pt-faq__question,
#protransport-landing .pt-faq__question span,
#protransport-landing .pt-faq__question strong {
  color: var(--c-navy) !important;
}

.pt-faq__question:hover {
  background: #f3f4f6 !important;
}

.pt-faq__question[aria-expanded="true"] {
  color: var(--c-red) !important;
  background: #fff5f5 !important;
}

.pt-faq__chevron {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  transition: transform .25s var(--ease);
}

.pt-faq__question[aria-expanded="true"] .pt-faq__chevron {
  transform: rotate(180deg);
}

.pt-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s var(--ease);
}

.pt-faq__answer.is-open {
  max-height: 500px;
}

.pt-faq__answer p {
  padding: 0 24px 22px;
  font-size: 1rem;
  color: #374151;
  line-height: 1.75;
}

@media (max-width: 600px) {
  .pt-faq__question { padding: 18px 16px; font-size: .93rem; gap: 14px; }
  .pt-faq__answer p { padding: 0 16px 16px; font-size: .9rem; }
  .pt-faq__chevron { width: 18px; height: 18px; }
}

/* ==========================================================================
   11. MAP
   ========================================================================== */
.pt-map {
  background: var(--c-bg);
  padding-bottom: 0;
}

.pt-map .pt-container {
  padding-bottom: 32px;
}

.pt-map__frame {
  overflow: hidden;
  border-top: 3px solid var(--c-red);
}

.pt-map__frame iframe {
  display: block;
  width: 100%;
}

/* ==========================================================================
   12. FINAL CTA
   ========================================================================== */
.pt-final-cta {
  padding: clamp(70px, 10vw, 110px) 0;
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-deep) 100%);
  text-align: center;
}

.pt-final-cta h2 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}

.pt-final-cta p {
  color: rgba(255,255,255,.75);
  font-size: clamp(1rem, 2vw, 1.15rem);
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.pt-final-cta__buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.pt-final-cta__social {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 28px;
}

.pt-final-cta__social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  transition: background .2s var(--ease), transform .2s var(--ease);
  text-decoration: none;
}

.pt-final-cta__social-icon:hover {
  background: rgba(255,255,255,.2);
  transform: translateY(-3px);
  text-decoration: none;
}

.pt-final-cta__social-icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

@media (max-width: 520px) {
  .pt-final-cta__buttons {
    flex-direction: column;
    padding: 0 12px;
  }
  .pt-final-cta__buttons .pt-btn { width: 100%; }
}

/* ==========================================================================
   12b. SOCIAL FOOTER
   ========================================================================== */
.pt-social {
  padding: clamp(40px, 6vw, 64px) 0;
  background: var(--c-white);
  text-align: center;
  border-top: 1px solid var(--c-border);
}

.pt-social__label {
  font-size: .95rem;
  color: var(--c-text-light);
  margin-bottom: 20px;
  font-weight: 600;
}

.pt-social__links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.pt-social__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .97rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
  color: #fff;
}

.pt-social__link:hover {
  transform: translateY(-3px);
  text-decoration: none;
  color: #fff;
}

.pt-social__link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}

.pt-social__link--fb {
  background: #1877f2;
  box-shadow: 0 4px 16px rgba(24,119,242,.3);
}

.pt-social__link--fb:hover {
  box-shadow: 0 8px 28px rgba(24,119,242,.4);
}

.pt-social__link--ig {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  box-shadow: 0 4px 16px rgba(220,39,67,.3);
}

.pt-social__link--ig:hover {
  box-shadow: 0 8px 28px rgba(220,39,67,.4);
}

@media (max-width: 480px) {
  .pt-social__links { flex-direction: column; align-items: center; }
  .pt-social__link { width: 100%; max-width: 280px; justify-content: center; }
}

/* ==========================================================================
   13. STICKY MOBILE BAR
   ========================================================================== */
.pt-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--c-navy);
  border-top: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 -4px 20px rgba(0,0,0,.25);
}

.pt-sticky__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px;
  font-family: var(--font);
  font-size: .92rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: background .15s;
  letter-spacing: .01em;
}

.pt-sticky__btn:hover { text-decoration: none; color: #fff; }

.pt-sticky__btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

.pt-sticky__btn--call {
  background: var(--c-red);
}

.pt-sticky__btn--call:hover { background: var(--c-red-dark); }

.pt-sticky__btn--wa {
  background: #25d366;
}

.pt-sticky__btn--wa:hover { background: #1da851; }

@media (max-width: 767px) {
  .pt-sticky { display: flex; }
  #protransport-landing { padding-bottom: 60px; }
}

@media (min-width: 1024px) {
  .pt-sticky { display: none; }
}

/* ==========================================================================
   14. LAYOUT HARDENING (theme-safe overrides)
   ========================================================================== */
#protransport-landing {
  font-size: clamp(16px, 1.05vw, 18px);
}

#protransport-landing .pt-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(18px, 3.8vw, 56px);
  padding-right: clamp(18px, 3.8vw, 56px);
}

#protransport-landing .pt-services,
#protransport-landing .pt-why,
#protransport-landing .pt-seo,
#protransport-landing .pt-pricing,
#protransport-landing .pt-form-section,
#protransport-landing .pt-local,
#protransport-landing .pt-faq,
#protransport-landing .pt-final-cta {
  padding-top: clamp(92px, 10vw, 152px);
  padding-bottom: clamp(92px, 10vw, 152px);
}

#protransport-landing .pt-services > .pt-container,
#protransport-landing .pt-why > .pt-container,
#protransport-landing .pt-pricing > .pt-container,
#protransport-landing .pt-form-section > .pt-container,
#protransport-landing .pt-local > .pt-container,
#protransport-landing .pt-faq > .pt-container {
  display: grid;
  gap: clamp(28px, 4vw, 52px);
}

#protransport-landing .pt-proof__grid {
  max-width: 860px;
  margin: 0 auto;
}

#protransport-landing .pt-proof__item:nth-child(2) {
  border-right: none;
}

#protransport-landing .pt-services__grid,
#protransport-landing .pt-why__grid,
#protransport-landing .pt-pricing__grid,
#protransport-landing .pt-local__grid {
  gap: clamp(22px, 3vw, 40px);
}

#protransport-landing .pt-card__title,
#protransport-landing .pt-why__tile h3,
#protransport-landing .pt-price-card__head h3,
#protransport-landing .pt-local__card h3,
#protransport-landing .pt-faq__question {
  line-height: 1.3;
}

#protransport-landing .pt-card__text,
#protransport-landing .pt-why__tile p,
#protransport-landing .pt-local__card p,
#protransport-landing .pt-price-card__list li,
#protransport-landing .pt-seo p,
#protransport-landing .pt-faq__answer p {
  line-height: 1.75;
}

#protransport-landing .pt-card,
#protransport-landing .pt-why__tile,
#protransport-landing .pt-local__card,
#protransport-landing .pt-price-card {
  height: 100%;
}

#protransport-landing .pt-section-title {
  margin-bottom: 20px;
}

#protransport-landing .pt-section-sub {
  margin-bottom: clamp(44px, 5vw, 74px);
  max-width: 760px;
}

#protransport-landing .pt-seo__wrap {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

#protransport-landing .pt-seo p {
  margin-bottom: 28px;
  line-height: 1.92;
}

#protransport-landing .pt-cta-bar__inner,
#protransport-landing .pt-final-cta__buttons,
#protransport-landing .pt-hero__cta-group {
  gap: clamp(12px, 2.2vw, 20px);
}

#protransport-landing .pt-form {
  max-width: 780px;
}

#protransport-landing .pt-faq__list {
  max-width: 920px;
  gap: 24px;
}

#protransport-landing .pt-faq__item {
  background: #ffffff;
  border-color: #dfe4ea;
}

#protransport-landing .pt-faq__question,
#protransport-landing .pt-faq__question:link,
#protransport-landing .pt-faq__question:visited,
#protransport-landing button.pt-faq__question {
  color: #111827 !important;
  background: #ffffff !important;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
}

#protransport-landing .pt-faq__question:hover {
  background: #f3f4f6 !important;
}

#protransport-landing .pt-faq__question[aria-expanded="true"] {
  color: #c0221a !important;
  background: #fff5f5 !important;
}

#protransport-landing .pt-faq__answer p {
  color: #374151;
  font-size: clamp(.97rem, 1.2vw, 1.04rem);
}

@media (max-width: 900px) {
  #protransport-landing .pt-proof__grid {
    max-width: none;
  }

  #protransport-landing .pt-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #protransport-landing .pt-why__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  #protransport-landing .pt-services,
  #protransport-landing .pt-why,
  #protransport-landing .pt-seo,
  #protransport-landing .pt-pricing,
  #protransport-landing .pt-form-section,
  #protransport-landing .pt-local,
  #protransport-landing .pt-faq,
  #protransport-landing .pt-final-cta {
    padding-top: clamp(64px, 12vw, 88px);
    padding-bottom: clamp(64px, 12vw, 88px);
  }

  #protransport-landing .pt-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  #protransport-landing .pt-services__grid,
  #protransport-landing .pt-why__grid,
  #protransport-landing .pt-local__grid {
    grid-template-columns: 1fr;
  }

  #protransport-landing .pt-card,
  #protransport-landing .pt-why__tile,
  #protransport-landing .pt-local__card,
  #protransport-landing .pt-price-card {
    padding: 24px 18px;
  }

  #protransport-landing .pt-section-sub {
    margin-bottom: 28px;
  }
}

/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */
#protransport-landing *:focus-visible {
  outline: 3px solid var(--c-red);
  outline-offset: 2px;
}

/* ==========================================================================
   PRINT
   ========================================================================== */
@media print {
  .pt-sticky,
  .pt-hero__cta-group,
  .pt-cta-bar,
  .pt-final-cta,
  .pt-map__frame {
    display: none !important;
  }
}
