/* ==========================================================================
   PinasBnb — Marketing primitives (unified site)
   Ports of the Vercel site's Tailwind utility patterns to plain CSS, reusing
   the shared tokens in main.css (:root). Loaded only for marketing pages.
   ========================================================================== */

:root {
  --mk-container: 72rem;          /* Tailwind max-w-6xl */
  --mk-gutter: 1.5rem;            /* px-6 */
  --mk-cloud: #EEF4FB;            /* --color-cloud */
  --mk-ink-65: rgba(26,35,64,0.65);
  --mk-ink-72: rgba(26,35,64,0.72);
  --mk-check: #4CA750;
  --mk-plan-dark: #012B6A;
  /* The live Vercel site's Tailwind `font-serif` resolves to this stack (not
     Playfair) — kept for visual parity; see Decisions/PO watch items. */
  --mk-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
}

.mk-main { background: var(--mk-cloud); line-height: 1.5; }
/* Tailwind-preflight equivalents, at zero specificity so component classes win. */
:where(.mk-main) p { margin: 0; }
:where(.mk-main) :is(h1, h2, h3) { font-family: var(--mk-serif); line-height: 1.25; margin: 0; font-size: inherit; }

.mk-container {
  max-width: var(--mk-container);
  margin: 0 auto;
  padding: 0 var(--mk-gutter);
}

.mk-section { padding: 6rem 0; }
.mk-section--cloud { background: var(--mk-cloud); }
.mk-section--white { background: #fff; }

/* Breadcrumbs (Breadcrumbs.tsx) — header is sticky here, not fixed, so less top padding */
.mk-breadcrumbs { padding-top: 2.5rem; padding-bottom: 1rem; } /* Vercel pt-28 minus the 72px header that is fixed there, sticky here */
.mk-breadcrumbs ol {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem;
  font-size: 12.5px; color: var(--mk-ink-65);
}
.mk-breadcrumbs li { display: flex; align-items: center; gap: 0.5rem; }
.mk-breadcrumbs a { color: var(--mk-ink-72); }
.mk-breadcrumbs a:hover { color: var(--mk-ink-72); text-decoration: underline; }
.mk-breadcrumbs .current { color: var(--color-navy); }

/* Section heading block */
.mk-section-head { text-align: center; margin-bottom: 3rem; }
.mk-eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 0.625rem;
  margin-bottom: 1rem;
  font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--color-primary);
}
.mk-eyebrow span { display: block; width: 2rem; height: 1px; background: var(--color-primary); }
.mk-title {
  font-family: var(--mk-serif); font-weight: 700; line-height: 1.25;
  font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--color-navy);
  margin-bottom: 1rem;
}
.mk-lede { max-width: 560px; margin: 0 auto; line-height: 1.625; color: var(--mk-ink-72); font-size: 1rem; }

/* White panel (e.g. "Included with every plan") */
.mk-panel {
  background: #fff; border: 1px solid rgba(0,0,0,0.08);
  border-radius: 1rem; padding: 1.5rem; margin-bottom: 2rem;
}
.mk-panel__title {
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em;
  text-align: center; color: var(--color-navy); margin-bottom: 1rem;
}
.mk-check-grid { display: grid; grid-template-columns: 1fr; gap: 0.625rem 1.5rem; }
.mk-check-grid li { display: flex; align-items: flex-start; gap: 0.5rem; }
.mk-check-grid i { color: var(--mk-check); font-size: 12px; margin-top: 0.25rem; flex-shrink: 0; }
.mk-check-grid span { font-size: 0.8rem; line-height: 1.375; color: var(--mk-ink-65); }

/* Pricing cards (PricingPreview.tsx) */
.mk-plan-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: stretch; }
.mk-plan {
  position: relative; display: flex; flex-direction: column; gap: 1.25rem;
  padding: 2rem; border-radius: 1rem;
  background: #fff; border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.mk-plan__badge {
  position: absolute; top: -0.875rem; left: 50%; transform: translateX(-50%);
  padding: 0.25rem 1rem; border-radius: 9999px; white-space: nowrap;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: #fff;
  background: var(--gradient-primary);
}
.mk-plan__name { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--mk-ink-65); }
.mk-plan__price { display: flex; align-items: flex-end; gap: 0.25rem; }
.mk-plan__amount { font-family: var(--mk-serif); font-weight: 700; line-height: 1; font-size: 2.4rem; color: var(--color-navy); }
.mk-plan__per { font-size: 14px; padding-bottom: 0.25rem; color: var(--mk-ink-65); }
.mk-plan__fine { font-size: 11.5px; color: var(--mk-ink-65); line-height: 1.5; }
.mk-plan__fine:first-of-type { margin-top: 0.25rem; }
.mk-plan__limit { font-size: 12px; font-weight: 600; color: var(--color-navy); }
.mk-plan__limit-detail { font-size: 11px; margin-top: 0.125rem; color: var(--mk-ink-65); }
.mk-plan__desc { font-size: 0.85rem; line-height: 1.625; color: var(--mk-ink-72); margin: 0; }
.mk-plan__divider { height: 1px; background: rgba(0,0,0,0.06); }
.mk-plan__features { display: flex; flex-direction: column; gap: 0.625rem; flex: 1; }
.mk-plan__features li, .mk-plan__core { display: flex; align-items: flex-start; gap: 0.625rem; }
.mk-plan__core { flex: 1; }
.mk-plan__features i, .mk-plan__core i { color: var(--mk-check); font-size: 13px; margin-top: 0.125rem; flex-shrink: 0; }
.mk-plan__features span, .mk-plan__core span { font-size: 0.84rem; line-height: 1.5; color: rgba(26,35,64,0.70); }
.mk-plan__trial {
  text-align: center; font-size: 12px; font-weight: 600; padding: 0.5rem 0; border-radius: 9999px;
  color: var(--color-primary-dark); background: rgba(206,17,38,0.08);
}
.mk-plan__paid-note { text-align: center; font-size: 11.5px; padding: 0.5rem 0; color: var(--mk-ink-65); }
.mk-plan__cta {
  margin-top: auto; text-align: center; padding: 0.875rem 1.5rem; border-radius: 9999px;
  font-size: 13px; font-weight: 600; color: var(--color-navy);
  border: 2px solid rgba(26,35,64,0.20);
  transition: transform 0.2s ease;
}
.mk-plan__cta:hover { transform: translateY(-2px); color: var(--color-navy); }
.mk-plan__details {
  text-align: center; font-size: 12px; font-weight: 600;
  text-decoration: underline; text-underline-offset: 2px; color: var(--mk-ink-65);
}
.mk-plan__details:hover { color: var(--mk-ink-65); }

.mk-plan--recommended {
  background: linear-gradient(158deg, var(--mk-plan-dark), var(--mk-plan-dark));
  border: 2px solid rgba(206,17,38,0.40);
  box-shadow: 0 12px 48px rgba(0,0,0,0.20);
}
.mk-plan--recommended .mk-plan__name { color: rgba(255,255,255,0.55); }
.mk-plan--recommended .mk-plan__amount { color: var(--color-primary); }
.mk-plan--recommended .mk-plan__per { color: rgba(255,255,255,0.40); }
.mk-plan--recommended .mk-plan__fine,
.mk-plan--recommended .mk-plan__limit-detail,
.mk-plan--recommended .mk-plan__paid-note { color: rgba(255,255,255,0.45); }
.mk-plan--recommended .mk-plan__limit { color: rgba(255,255,255,0.75); }
.mk-plan--recommended .mk-plan__desc,
.mk-plan--recommended .mk-plan__details { color: rgba(255,255,255,0.65); }
.mk-plan--recommended .mk-plan__divider { background: rgba(255,255,255,0.10); }
.mk-plan--recommended .mk-plan__features i { color: var(--color-teal); }
.mk-plan--recommended .mk-plan__features span { color: rgba(255,255,255,0.80); }
.mk-plan--recommended .mk-plan__cta {
  border: 0; color: #fff; background: var(--gradient-primary); box-shadow: 0 4px 20px rgba(206,17,38,.40);
}
.mk-plan--recommended .mk-plan__cta:hover { color: #fff; }

.mk-section-foot { text-align: center; margin-top: 2.5rem; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.mk-section-foot p { font-size: 13px; color: var(--mk-ink-65); margin: 0; }
.mk-section-foot .mk-section-foot__small { font-size: 12px; color: rgba(26,35,64,0.35); }
.mk-section-foot a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 2px; }

/* Generic editor-content pages (legal shells etc.) */
.mk-prose { max-width: 780px; }
.mk-prose h1 { margin-bottom: 1.5rem; }
.mk-prose h2 { margin: 2rem 0 0.75rem; font-size: 1.4rem; }
.mk-prose ul { list-style: disc; padding-left: 1.25rem; margin-bottom: 1rem; }

@media (min-width: 640px) {
  .mk-check-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .mk-panel { padding: 1.75rem; }
  .mk-plan-grid { grid-template-columns: repeat(3, 1fr); }
  .mk-plan--recommended,
  .mk-plan--recommended.reveal,
  .mk-plan--recommended.reveal.is-visible { transform: scale(1.03); } /* inline-style precedence in the React original */
}
@media (min-width: 1024px) {
  .mk-check-grid { grid-template-columns: repeat(4, 1fr); }
}

body.page-template-page-templates-marketing { background: var(--mk-cloud); }

/* ==========================================================================
   M2 — full marketing site (homepage sections, tier pages, FAQ, vs-Airbnb,
   legal, contact). Values are the Tailwind utilities of the Vercel components.
   ========================================================================== */

.mk-container--2xl { max-width: 42rem; }
.mk-container--3xl { max-width: 48rem; }
.mk-container--4xl { max-width: 56rem; }
.mk-container--5xl { max-width: 64rem; }
.mk-center { text-align: center; }
.mk-green { color: var(--color-green-dark); }

.mk-section--lg { padding: 7rem 0; }
.mk-section--sm { padding: 4rem 0; }
.mk-section.mk-section--page { padding: 4rem 0; }

/* Buttons */
.mk-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 2rem; border-radius: 9999px;
  font-size: 14px; font-weight: 600; line-height: 1.4;
  transition: transform 0.2s ease, background-color 0.3s ease;
}
.mk-btn:hover { transform: translateY(-2px); }
.mk-btn--primary, .mk-btn--primary:hover {
  color: #fff; background: var(--gradient-primary); box-shadow: 0 4px 20px rgba(206,17,38,.40);
}
.mk-btn--lg { padding: 1rem 2.25rem; }
.mk-btn--lg.mk-btn--primary { box-shadow: 0 4px 24px rgba(206,17,38,.40); }
.mk-btn--ghost, .mk-btn--ghost:hover { color: var(--color-green-dark); border: 2px solid rgba(51,82,56,0.25); }
.mk-btn--ghost:hover { transform: none; background: rgba(0,0,0,0.05); }
.mk-btn--outline, .mk-btn--outline:hover { color: var(--color-navy); border: 2px solid rgba(26,35,64,0.20); }
.mk-btn--block { width: 100%; padding: 1rem 2rem; gap: 0.625rem; box-shadow: 0 4px 20px rgba(206,17,38,.35); }
.mk-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* Homepage heading block (WhyUs / HowItWorks / FAQ / Contact) */
.mk-head { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 3.5rem; }
.mk-head--tall { margin-bottom: 4rem; }
#faq .mk-head { margin-bottom: 3rem; }
.mk-eyebrow-bar {
  display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem;
  font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
}
.mk-eyebrow-bar span { display: block; width: 1.75rem; height: 2px; border-radius: 4px; background: var(--color-primary); }
.mk-eyebrow-bar--blue { color: #0038A8; }
.mk-eyebrow-bar--red { color: var(--color-primary); }
.mk-h2 { font-weight: 600; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.75rem !important; color: var(--color-navy); }
.mk-accent-line { width: 52px; height: 3px; border-radius: 9999px; background: linear-gradient(90deg, #0038A8, #0096C7); margin: 0 auto; }
.mk-accent-line--spaced { margin-top: 1rem; }
.mk-head__text { max-width: 500px; margin-top: 0.75rem !important; font-size: 16px; line-height: 1.7; color: rgba(26,35,64,0.55); }
.mk-head__text--after { max-width: 520px; margin-top: 1.25rem !important; }

/* Eyebrow variants (FeaturesGrid / FoundingPartners) */
.mk-eyebrow--green { color: var(--color-green-dark); }
.mk-eyebrow--green span { background: var(--color-teal); }
.mk-eyebrow--gold { color: #FCD116; margin-bottom: 1.25rem; }
.mk-eyebrow--gold span { background: #FCD116; }
#features .mk-section-head { margin-bottom: 3.5rem; }

/* Hero (SaasHero.tsx) — header is sticky (72px) here, fixed on Vercel */
.mk-hero {
  position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: center;
  min-height: calc(100vh - 72px);
  background: linear-gradient(160deg, #F5F8FF 0%, #EEF4FB 35%, #F0F6FF 65%, #F5F8FF 100%);
}
.mk-hero__bg { position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(51,82,56,.04) 1px, transparent 0); background-size: 32px 32px; }
.mk-hero__blob { position: absolute; border-radius: 9999px; filter: blur(64px); }
.mk-hero__blob--1 { top: 5rem; right: 6%; width: 480px; height: 480px; opacity: .2; background: radial-gradient(circle, #0038A8 0%, transparent 65%); }
.mk-hero__blob--2 { bottom: 5rem; left: 3%; width: 380px; height: 380px; opacity: .1; background: radial-gradient(circle, #023E8A 0%, transparent 65%); }
.mk-hero__blob--3 { top: 33.333%; left: 50%; transform: translateX(-50%); width: 700px; height: 400px; opacity: .08; background: radial-gradient(circle, #0096C7 0%, transparent 65%); }
.mk-hero__inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding-top: 4.5rem; padding-bottom: 7rem; }
.mk-hero__eyebrow { display: flex; align-items: center; gap: 0.625rem; margin-bottom: 1.5rem;
  font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--color-green); }
.mk-hero__eyebrow span { display: block; width: 2rem; height: 1px; background: var(--color-green); }
.mk-hero__title { font-weight: 700; line-height: 1.1 !important; margin-bottom: 1.5rem !important; font-size: clamp(2.6rem, 6.5vw, 5rem) !important; color: var(--color-navy); }
.mk-hero__title span { color: var(--color-primary); }
.mk-hero__sub { max-width: 600px; margin-bottom: 2.5rem !important; line-height: 1.75; font-size: clamp(1rem, 2vw, 1.18rem); color: rgba(26,35,64,0.62); }
.mk-hero__ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 3.5rem; }
.mk-hero__stats {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.5rem; padding: 1.25rem 2rem; border-radius: 1rem;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(76,167,80,0.15); box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}
.mk-hero__stat { display: flex; align-items: center; gap: 0.75rem; }
.mk-hero__stat i { font-size: 15px; color: var(--color-primary); }
.mk-hero__stat strong { font-size: 15px; font-weight: 700; color: var(--color-navy); }
.mk-hero__stat > span { font-size: 13px; color: rgba(26,35,64,0.65); }
.mk-hero__stat .mk-hero__flag { font-size: 15px; color: inherit; }
.mk-hero__scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.375rem; opacity: .4; color: var(--color-green-dark); }
.mk-hero__scroll span { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.mk-hero__scroll i { font-size: 11px; animation: mk-bounce 1s infinite; }
@keyframes mk-bounce {
  0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8,0,1,1); }
  50% { transform: none; animation-timing-function: cubic-bezier(0,0,0.2,1); }
}

/* Why PinasBnb (WhyUs.tsx) */
.mk-why-grid { display: grid; grid-template-columns: 1fr; gap: 1.75rem; }
.mk-why-card {
  padding: 2rem; border-radius: 20px; background: var(--mk-cloud); border-top: 3px solid #0038A8;
  box-shadow: 0 4px 24px rgba(26,35,64,.06); transition: all .3s ease;
}
.mk-why-card.is-visible:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,35,64,.12); }
.mk-why-card__icon { width: 48px; height: 48px; border-radius: 14px; margin-bottom: 1.25rem;
  display: flex; align-items: center; justify-content: center; background: rgba(0,56,168,0.10); }
.mk-why-card__icon i { font-size: 20px; color: #0038A8; }
.mk-why-card h3 { font-weight: 600; font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--color-navy); }
.mk-why-card p { font-size: 13.5px; line-height: 1.7; color: rgba(26,35,64,0.55); }

/* Platform features (FeaturesGrid.tsx) */
.mk-feature-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.mk-feature {
  display: flex; gap: 1.25rem; padding: 1.75rem; border-radius: 1rem; background: #fff;
  border: 1px solid rgba(51,82,56,0.10); box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.mk-feature__icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center; background: rgba(139,205,184,0.15); }
.mk-feature__icon i { font-size: 16px; color: var(--color-green-dark); }
.mk-feature h3 { font-family: var(--font-sans) !important; font-weight: 600; font-size: 0.95rem; line-height: 1.5 !important; margin-bottom: 0.375rem !important; color: var(--color-navy); }
.mk-feature p { font-size: 0.84rem; line-height: 1.625; color: rgba(26,35,64,0.58); }

/* How it works (HowItWorks.tsx) */
.mk-steps { position: relative; display: grid; grid-template-columns: 1fr; gap: 2rem; }
.mk-steps__line { display: none; position: absolute; top: 52px; left: calc(16.66% + 1rem); right: calc(16.66% + 1rem); height: 2px; background: rgba(206,17,38,0.20); }
.mk-step {
  position: relative; display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 2.5rem 2rem; border-radius: 24px; background: #fff; box-shadow: 0 4px 24px rgba(26,35,64,.07); transition: all .3s ease;
}
.mk-step.is-visible:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,35,64,.12); }
.mk-step__num { position: absolute; top: -1rem; left: 50%; transform: translateX(-50%); width: 2rem; height: 2rem; border-radius: 9999px;
  display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: #fff; background: var(--gradient-primary); }
.mk-step__icon { width: 72px; height: 72px; border-radius: 20px; margin: 1rem 0 1.5rem;
  display: flex; align-items: center; justify-content: center; background: rgba(206,17,38,0.10); }
.mk-step__icon i { font-size: 28px; color: var(--color-primary); }
.mk-step h3 { font-weight: 600; font-size: 1.15rem; margin-bottom: 0.75rem !important; color: var(--color-navy); }
.mk-step p { font-size: 13.5px; line-height: 1.75; color: rgba(26,35,64,0.55); }

/* Founding partners (FoundingPartners.tsx) */
.mk-fp { text-align: center; padding: 2.5rem; border-radius: 28px;
  background: linear-gradient(158deg, #012B6A, #0038A8); box-shadow: 0 12px 48px rgba(0,0,0,0.18); }
.mk-fp__title { font-weight: 700; color: #fff !important; font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 1rem !important; }
.mk-fp__text { max-width: 520px; margin: 0 auto 2rem !important; line-height: 1.625; color: rgba(255,255,255,0.75); }

/* Host Academy teaser (HostAcademy.tsx) */
.mk-academy {
  display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 2rem; border-radius: 20px; background: #fff; border: 1px solid rgba(0,0,0,.04); box-shadow: 0 4px 24px rgba(26,35,64,.06);
}
.mk-academy__text { text-align: center; }
.mk-academy h2 { font-weight: 600; font-size: 1.3rem; margin-bottom: 0.375rem !important; color: var(--color-navy); }
.mk-academy p { max-width: 480px; font-size: 14px; line-height: 1.625; color: rgba(26,35,64,0.55); }
.mk-academy .mk-btn { flex-shrink: 0; padding: 0.75rem 1.75rem; font-size: 13px; }

/* FAQ teaser (FAQ.tsx) + Q&A cards */
.mk-qa-list, .mk-details-list { display: flex; flex-direction: column; gap: 0.75rem; }
.mk-details-list--spaced { margin-bottom: 3.5rem; }
.mk-qa { padding: 1.25rem 1.5rem; border-radius: 16px; background: #fff; border: 1px solid rgba(0,0,0,.06); box-shadow: 0 2px 16px rgba(26,35,64,.04); }
.mk-qa__q { font-weight: 600; font-size: 15px; margin-bottom: 0.375rem !important; color: var(--color-navy); }
.mk-qa__a { font-size: 14px; line-height: 1.7; color: rgba(26,35,64,0.60); }
#faq .mk-center { margin-top: 2.5rem; }
.mk-link-arrow { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 14px; font-weight: 600;
  color: var(--color-primary); text-decoration: underline; text-underline-offset: 2px; }
.mk-link-arrow i { font-size: 12px; }

/* <details> FAQ items (FaqContent.tsx / AirbnbComparison.tsx) */
.mk-details { padding: 0.25rem 1.5rem; border-radius: 16px; background: #fff; border: 1px solid rgba(0,0,0,.06); box-shadow: 0 2px 16px rgba(26,35,64,.04); }
.mk-details[open] { padding-bottom: 1.25rem; }
.mk-details summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 0;
  cursor: pointer; list-style: none; font-weight: 600; font-size: 15px; color: var(--color-navy); }
.mk-details summary::-webkit-details-marker { display: none; }
.mk-details summary i { flex-shrink: 0; font-size: 12px; color: var(--color-primary); transition: transform .2s ease; }
.mk-details[open] summary i { transform: rotate(180deg); }
.mk-details p { font-size: 14px; line-height: 1.75; color: rgba(26,35,64,0.65); }

/* Page headers (FAQ / tier / vs-Airbnb) */
.mk-section-head--page { margin-bottom: 3.5rem; }
.mk-title--page { font-size: clamp(2rem, 5vw, 3rem) !important; }
.mk-title--tier { font-size: clamp(2rem, 5vw, 3.2rem) !important; }
.mk-lede--lg { font-size: 1.05rem; margin-bottom: 0.5rem !important; }
.mk-lede--wide { max-width: 620px; margin-bottom: 0 !important; }
.mk-callout { padding: 2rem; border-radius: 1rem; background: var(--mk-cloud); }
.mk-callout h2 { font-weight: 700; font-size: 1.3rem; margin-bottom: 0.75rem !important; color: var(--color-navy); }
.mk-callout p { font-size: 0.95rem; line-height: 1.625; margin-bottom: 1rem !important; color: rgba(26,35,64,0.72); }
.mk-callout a, .mk-tier__others a, .mk-legal a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 2px; }

/* Tier pages (TierDetail.tsx) */
.mk-tier__best { font-size: 13px; font-weight: 500; color: rgba(26,35,64,0.65); }
.mk-tier-card {
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem; padding: 2.5rem; margin-bottom: 3rem;
  border-radius: 1rem; background: #fff; border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.mk-tier__amount { font-size: 3rem; }
.mk-tier__per { font-size: 15px; }
.mk-tier__annual { margin-top: 0.25rem; text-align: center; font-size: 12px; color: rgba(26,35,64,0.65); }
.mk-tier__limit { text-align: center; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .025em; color: var(--color-primary); }
.mk-tier__limit-detail { margin-top: 0.125rem; text-align: center; font-size: 11px; color: rgba(26,35,64,0.65); }
.mk-tier__note { font-size: 12px; color: rgba(26,35,64,0.65); }
.mk-tier-block { margin-bottom: 3.5rem; }
.mk-h2-sm { text-align: center; font-weight: 700; font-size: 1.5rem; margin-bottom: 0.75rem !important; color: var(--color-navy); }
.mk-tier-block .mk-h2-sm, .mk-h2-sm--tight { margin-bottom: 1.5rem !important; }
.mk-check-list { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.mk-check-list li { display: flex; align-items: flex-start; gap: 0.75rem; }
.mk-check-list i { flex-shrink: 0; margin-top: 0.125rem; font-size: 15px; color: var(--mk-check); }
.mk-check-list span { font-size: 0.92rem; color: rgba(26,35,64,0.75); }
.mk-check-list strong { color: var(--color-navy); }
.mk-tier__upgrade { margin-bottom: 1.5rem !important; font-size: 13.5px; font-weight: 500; color: var(--color-navy); }
.mk-tier__others { margin-bottom: 0.75rem !important; font-size: 13px; color: rgba(26,35,64,0.65); }
.mk-tier__compare, .mk-tier__compare:hover { font-size: 13px; text-decoration: underline; text-underline-offset: 2px; color: rgba(26,35,64,0.72); }

/* PinasBnb vs Airbnb (AirbnbComparison.tsx) */
.mk-vs-hero { padding: 3rem 0 3.5rem; }
.mk-vs-hero .mk-title { margin-bottom: 1.25rem !important; }
.mk-vs-block { padding-bottom: 3.5rem; }
.mk-vs-block--table { padding-bottom: 4rem; }
.mk-vs-block--lg { padding-bottom: 5rem; }
.mk-vs-block--xl { padding-bottom: 6rem; }
.mk-vs-text { text-align: center; font-size: 0.95rem; line-height: 1.625; color: rgba(26,35,64,0.65); }
.mk-compare { overflow: hidden; border-radius: 1rem; background: #fff; border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.mk-compare__row { display: grid; grid-template-columns: 1fr; border-top: 1px solid rgba(0,0,0,0.06); }
.mk-compare__row--head { background: var(--mk-cloud); border-top: 0; }
.mk-compare__row--head + .mk-compare__row { border-top: 0; }
.mk-compare__row > div { padding: 1.25rem; font-size: 13.5px; line-height: 1.625; }
.mk-compare__blank { display: none; }
.mk-compare__row--head > div { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .025em; line-height: 1.5; }
.mk-compare__col-airbnb { color: var(--color-navy); }
.mk-compare__col-pbnb { color: var(--color-primary); }
.mk-compare__label { font-weight: 600; color: var(--color-navy); background: rgba(26,35,64,0.02); }
.mk-compare__airbnb { color: rgba(26,35,64,0.65); }
.mk-compare__pbnb { color: rgba(26,35,64,0.80); }
.mk-compare__source { margin-top: 1rem !important; font-size: 12px; color: rgba(26,35,64,0.45); }
.mk-compare__source a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.mk-vs-dark { padding: 2.25rem; border-radius: 1rem; background: #012B6A; box-shadow: 0 12px 48px rgba(0,0,0,0.15); }
.mk-vs-dark h2 { font-weight: 700; font-size: 1.5rem; margin-bottom: 1rem !important; color: #fff; }
.mk-vs-dark p { font-size: 0.95rem; line-height: 1.625; color: rgba(255,255,255,0.85); }
.mk-vs-ctas { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }

/* Legal placeholders */
.mk-legal h1 { font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 0.5rem !important; color: var(--color-navy); }
.mk-legal__updated { margin-bottom: 2.5rem !important; font-size: 13px; color: rgba(26,35,64,0.5); }
.mk-legal__body { display: flex; flex-direction: column; gap: 2rem; font-size: 14.5px; line-height: 1.625; color: rgba(26,35,64,0.75); }
.mk-legal__body h2 { font-weight: 600; font-size: 1.15rem; margin-bottom: 0.5rem !important; color: var(--color-navy); }

/* Contact (ContactForm.tsx) */
.mk-contact { position: relative; overflow: hidden; }
.mk-contact__dots { position: absolute; inset: 0; pointer-events: none; opacity: .4;
  background-image: radial-gradient(circle at 1px 1px, rgba(59,83,35,.06) 1px, transparent 0); background-size: 28px 28px; }
.mk-contact__glow { position: absolute; top: 0; right: 0; width: 420px; height: 420px; border-radius: 9999px; pointer-events: none;
  background: radial-gradient(circle at top right, rgba(206,17,38,.07) 0%, transparent 65%); transform: translate(30%, -30%); }
.mk-contact__inner { position: relative; z-index: 1; }
.mk-contact__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
.mk-card { padding: 2.25rem; border-radius: 20px; background: #fff; border: 1px solid rgba(0,0,0,.04); box-shadow: 0 4px 24px rgba(26,35,64,.08); }
.mk-contact__panel { height: 100%; display: flex; flex-direction: column; }
.mk-contact__sep { height: 1px; margin: 0.875rem 0; background: rgba(0,0,0,.06); }
.mk-contact__item { display: flex; align-items: flex-start; gap: 1rem; }
.mk-contact__icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: rgba(0,56,168,0.10); }
.mk-contact__icon i { font-size: 17px; color: #0038A8; }
.mk-contact__label { margin-bottom: 0.125rem; font-size: 14px; font-weight: 600; color: var(--color-navy); }
.mk-contact__value { font-size: 13.5px; line-height: 1.65; color: rgba(26,35,64,0.55); word-break: break-all; }
.mk-contact__value a { color: inherit; }
.mk-contact__value a:hover { color: #0038A8; }
.mk-form__row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.mk-field { display: flex; flex-direction: column; gap: 0.375rem; }
.mk-field--last { margin-bottom: 1.75rem; }
.mk-field label { font-size: 12.5px; font-weight: 600; letter-spacing: .025em; text-transform: uppercase; color: rgba(26,35,64,0.70); }
.mk-req { color: #ef4444; }
.mk-req--soft { color: #f87171; }
.mk-input {
  width: 100%; padding: 0.75rem 1rem; border-radius: 10px; font: inherit; font-size: 14px; line-height: 1.5;
  color: var(--color-navy); background: var(--mk-cloud); border: 1px solid rgba(0,0,0,.10); transition: all .2s ease;
}
.mk-input::placeholder { color: rgba(26,35,64,0.30); }
.mk-input:focus { outline: none; border-color: #0038A8; box-shadow: 0 0 0 2px rgba(0,56,168,0.10); }
.mk-select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.mk-textarea { resize: none; }
.mk-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.mk-form-status { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.25rem; padding: 1rem; border-radius: 10px; font-size: 14px; border: 1px solid; }
.mk-form-status[hidden] { display: none; }
.mk-form-status--ok { background: #f0fdf4; border-color: #bbf7d0; color: #15803d; }
.mk-form-status--err { background: #fef2f2; border-color: #fecaca; color: #dc2626; }
.mk-form__note { margin-top: 1rem !important; text-align: center; font-size: 12px; color: rgba(26,35,64,0.35); }

@media (min-width: 640px) {
  .mk-why-grid, .mk-feature-grid, .mk-check-list, .mk-form__row { grid-template-columns: repeat(2, 1fr); }
  .mk-compare__row { grid-template-columns: 1fr 1.4fr 1.4fr; }
  .mk-compare__blank { display: block; }
  .mk-vs-ctas { flex-direction: row; }
}
@media (min-width: 768px) {
  .mk-steps { grid-template-columns: repeat(3, 1fr); }
  .mk-steps__line { display: block; }
  .mk-fp { padding: 3.5rem; }
  .mk-academy { flex-direction: row; padding: 1.75rem 2rem; }
  .mk-academy__text { text-align: left; }
}
@media (min-width: 1024px) {
  .mk-why-grid { grid-template-columns: repeat(4, 1fr); }
  .mk-feature-grid { grid-template-columns: repeat(3, 1fr); }
  .mk-contact__grid { grid-template-columns: 2fr 3fr; }
}

/* Marketing pages: header/footer use the Vercel max-w-6xl container (Academy keeps its wider one). */
body.page-template-page-templates-marketing .site-header .container,
body.page-template-page-templates-marketing .site-footer .container { max-width: var(--mk-container); padding-left: var(--mk-gutter); padding-right: var(--mk-gutter); }
