/* ============================================
   PaGaSOL — Marketing Landing
   Palette: Granat #0B1424 + Bursztyn #E08C2C
   ============================================ */

:root {
  /* Brand */
  --navy-900: #0B1424;
  --navy-800: #15243F;
  --navy-700: #1B2C4E;
  --navy-600: #243561;

  --amber-500: #E08C2C;
  --amber-600: #C97725;
  --amber-300: #F4C078;

  /* Neutrals */
  --bg-light: #FAFBFC;
  --bg-soft:  #F1F5F9;
  --border:   #E2E8F0;
  --text-strong: #0F172A;
  --text-body:   #334155;
  --text-mute:   #64748B;

  /* Status */
  --success: #16A34A;
  --warning: #EAB308;
  --danger:  #DC2626;
  --info:    #2563EB;

  /* Layout */
  --container: 1200px;
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(11,20,36,0.06), 0 1px 3px rgba(11,20,36,0.10);
  --shadow:    0 4px 12px rgba(11,20,36,0.08), 0 8px 24px rgba(11,20,36,0.06);
  --shadow-lg: 0 20px 48px rgba(11,20,36,0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-body);
  background: var(--bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  color: var(--text-strong);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.05rem; }

p { color: var(--text-body); font-size: 1rem; }

a { color: var(--amber-500); text-decoration: none; transition: color .2s; }
a:hover { color: var(--amber-600); }

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

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo img { height: 38px; display: block; }
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--text-strong);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--amber-500); }
.nav-cta {
  background: var(--amber-500);
  color: white !important;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background .2s, transform .15s;
}
.nav-cta:hover {
  background: var(--amber-600);
  transform: translateY(-1px);
}
.nav-login {
  background: transparent;
  color: var(--navy-900) !important;
  padding: 0.55rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all .2s;
}
.nav-login:hover {
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: white !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.5rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 6rem 0 5rem;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: white;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(224,140,44,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.hero h1 {
  color: white;
  margin-bottom: 1.5rem;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--amber-300), var(--amber-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-lead {
  font-size: 1.15rem;
  color: #CBD5E1;
  margin-bottom: 2rem;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-size: 0.98rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  border: 0;
  transition: all .2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--amber-500);
  color: white;
}
.btn-primary:hover {
  background: var(--amber-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224,140,44,0.3);
  color: white;
}
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: white;
  border: 1px solid rgba(255,255,255,0.18);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  color: white;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--navy-800);
  border: 1px solid var(--navy-800);
}
.btn-outline:hover {
  background: var(--navy-800);
  color: white;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  max-width: 540px;
}
.hero-stat .num {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--amber-300);
  display: block;
}
.hero-stat .lbl {
  font-size: 0.82rem;
  color: #94A3B8;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Hero visual (right side mockup) */
.hero-visual {
  position: relative;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mockup-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 420px;
}
.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1rem;
}
.mockup-title { color: white; font-weight: 600; font-size: 0.95rem; }
.mockup-tag {
  background: rgba(224,140,44,0.18);
  color: var(--amber-300);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.mockup-image {
  height: 240px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(224,140,44,0.4), rgba(224,140,44,0.18) 30%, rgba(11,20,36,0.4)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 12px, transparent 12px 24px),
    #1F2D44;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}
.mockup-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 60%, rgba(220, 38, 38, 0.4) 0%, transparent 25%),
              radial-gradient(circle at 70% 30%, rgba(234, 179, 8, 0.35) 0%, transparent 20%),
              radial-gradient(circle at 45% 75%, rgba(220, 38, 38, 0.35) 0%, transparent 18%);
}
.mockup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.mockup-stat {
  background: rgba(255,255,255,0.04);
  padding: 0.7rem;
  border-radius: 8px;
  text-align: center;
}
.mockup-stat .v { color: white; font-weight: 700; display: block; font-size: 1.15rem; }
.mockup-stat .l { color: #94A3B8; font-size: 0.7rem; }

/* ===== TRUST BAR — 3 pillars ===== */
.trust {
  background: white;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1.5fr;
  gap: 2.5rem;
  align-items: flex-start;
}
.trust-pillar {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  position: relative;
}
.trust-pillar:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1.25rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 1px;
  background: var(--border);
}
.trust-label {
  font-size: 0.74rem;
  color: var(--text-mute);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}
.trust-big {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.02em;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 0.1rem;
}
.trust-big-plus {
  color: var(--amber-500);
  font-size: 1.6rem;
  font-weight: 700;
  margin-right: 0.2rem;
}
.trust-small {
  color: var(--text-mute);
  font-size: 0.9rem;
  line-height: 1.45;
}
.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy-800);
  letter-spacing: 0.01em;
}
.trust-projects-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.trust-project {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding-left: 0.8rem;
  border-left: 2px solid var(--amber-500);
}
.trust-project strong {
  color: var(--navy-900);
  font-weight: 700;
  font-size: 0.98rem;
  font-style: normal;
  line-height: 1.2;
}
.trust-project em {
  color: var(--text-mute);
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
@media (max-width: 860px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .trust-pillar:not(:last-child)::after {
    content: '';
    right: auto;
    top: auto;
    left: 0;
    right: 0;
    bottom: -1rem;
    width: auto;
    height: 1px;
  }
}

/* ===== SECTIONS ===== */
section { padding: 5rem 0; }
.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-tag {
  display: inline-block;
  background: rgba(224,140,44,0.12);
  color: var(--amber-600);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-head h2 { margin-bottom: 1rem; }
.section-head p { color: var(--text-mute); font-size: 1.1rem; }
.section-head p strong { color: var(--navy-900); font-weight: 700; }
.section-head-wide {
  max-width: 880px;
}
.section-head-wide p {
  text-align: left;
  font-size: 1.05rem;
  line-height: 1.65;
}
.section-sub-callout {
  margin-top: 1.5rem !important;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.95rem !important;
  color: var(--amber-600) !important;
  font-weight: 600 !important;
  text-align: center !important;
  letter-spacing: 0.01em;
}

/* ===== SERVICES ===== */
.services {
  background: var(--bg-soft);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.services-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  max-width: 1100px;
  margin: 0 auto;
}
.service-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
}
.service-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.7rem;
  background: linear-gradient(135deg, rgba(234,179,8,0.16), rgba(234,179,8,0.08));
  border: 1px solid rgba(234,179,8,0.4);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #92590B;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.service-badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #EAB308;
  box-shadow: 0 0 0 3px rgba(234,179,8,0.25);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.9; box-shadow: 0 0 0 3px rgba(234,179,8,0.18); }
  50%      { opacity: 1;   box-shadow: 0 0 0 5px rgba(234,179,8,0.32); }
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--amber-500);
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--amber-300), var(--amber-500));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}
.service-card h3 { margin-bottom: 0.5rem; font-size: 1.2rem; }
.service-card p { font-size: 0.95rem; color: var(--text-mute); }

/* ===== COMPETENCIES ===== */
.competencies {
  background: white;
}
.comp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.comp-block {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  position: relative;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.comp-block:hover {
  border-color: var(--amber-500);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.comp-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: var(--amber-300);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.comp-icon svg {
  width: 22px;
  height: 22px;
}
.comp-block h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: var(--navy-900);
}
.comp-block p {
  font-size: 0.92rem;
  color: var(--text-mute);
  margin-bottom: 1.2rem;
  line-height: 1.55;
}
.comp-block strong {
  color: var(--navy-900);
  font-weight: 600;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.7rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy-800);
  letter-spacing: 0.01em;
}
.chip-soon {
  background: linear-gradient(135deg, rgba(234,179,8,0.12), rgba(234,179,8,0.06));
  border-color: rgba(234,179,8,0.35);
  color: #92590B;
}
.chip-own {
  background: linear-gradient(135deg, rgba(224,140,44,0.14), rgba(224,140,44,0.06));
  border-color: rgba(224,140,44,0.4);
  color: var(--amber-600);
}
.comp-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-mute);
  margin-top: 0;
}
.comp-note a {
  color: var(--amber-600);
  font-weight: 600;
}

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.why-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: attr(data-num);
  position: absolute;
  top: -10px;
  right: 15px;
  font-size: 5rem;
  font-weight: 800;
  color: var(--bg-soft);
  line-height: 1;
  z-index: 0;
}
.why-card > * { position: relative; z-index: 1; }
.why-card h3 { margin-bottom: 0.5rem; color: var(--navy-900); }
.why-card p { color: var(--text-mute); font-size: 0.95rem; }

/* ===== CASE STUDY ===== */
.case-study {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: white;
}
.case-study .section-head h2 { color: white; }
.case-study .section-head p { color: #CBD5E1; }
.case-study .section-tag {
  background: rgba(224,140,44,0.18);
  color: var(--amber-300);
}
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.case-content h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.6rem;
}
.case-content p { color: #CBD5E1; margin-bottom: 1.5rem; }
.case-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.case-metric {
  background: rgba(255,255,255,0.05);
  padding: 1.5rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--amber-500);
}
.case-metric .v {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--amber-300);
  display: block;
  margin-bottom: 0.25rem;
}
.case-metric .l {
  font-size: 0.85rem;
  color: #94A3B8;
}
.case-image {
  display: flex;
  align-items: stretch;
}
.case-report-card {
  width: 100%;
  background: linear-gradient(180deg, #15243F 0%, #0E1A30 100%);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.case-report-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.case-report-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--amber-300);
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}
.case-report-sub {
  font-size: 1rem;
  font-weight: 600;
  color: white;
}
.case-report-badge {
  background: rgba(224,140,44,0.18);
  color: var(--amber-300);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.case-report-hero {
  text-align: center;
  padding: 0.5rem 0;
}
.case-report-hero-num {
  font-size: 3.6rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--amber-300), var(--amber-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.case-report-hero-lbl {
  font-size: 0.85rem;
  color: #94A3B8;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 0.3rem;
}
.case-report-bars {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.case-bar-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.35rem;
  font-size: 0.82rem;
}
.case-bar-lbl {
  color: #CBD5E1;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.case-bar-val {
  color: white;
  font-weight: 700;
}
.case-bar .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.dot-crit { background: #DC2626; }
.dot-high { background: #EA580C; }
.dot-mid  { background: #EAB308; }
.dot-low  { background: #16A34A; }
.case-bar-track {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
}
.case-bar-fill {
  height: 100%;
  border-radius: 999px;
  transition: width .8s ease;
}
.case-report-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.case-report-stat {
  text-align: center;
}
.case-report-stat-v {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--amber-300);
  line-height: 1.1;
  margin-bottom: 0.15rem;
}
.case-report-stat-l {
  display: block;
  font-size: 0.7rem;
  color: #94A3B8;
  letter-spacing: 0.04em;
}
.case-report-disclaimer {
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px dashed rgba(255,255,255,0.12);
  font-size: 0.72rem;
  color: #94A3B8;
  line-height: 1.5;
  text-align: center;
  font-style: italic;
}

/* ===== MARKETPLACE ===== */
.marketplace-hero {
  background: var(--bg-soft);
}
.mp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.mp-content h2 { margin-bottom: 1rem; }
.mp-content p { font-size: 1.1rem; color: var(--text-mute); margin-bottom: 2rem; }
.mp-roles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
.mp-role {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.mp-role-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--amber-500);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mp-role-icon svg { width: 22px; height: 22px; stroke: white; fill: none; stroke-width: 2; }
.mp-role h4 { margin-bottom: 0.25rem; }
.mp-role p { font-size: 0.9rem; color: var(--text-mute); margin: 0; }

.mp-visual {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.mp-job {
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 0.8rem;
  transition: border-color .2s;
}
.mp-job:hover { border-color: var(--amber-500); }
.mp-job-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 0.4rem;
}
.mp-job h5 { font-size: 0.95rem; color: var(--text-strong); margin: 0; }
.mp-badge {
  background: rgba(22,163,74,0.12);
  color: var(--success);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
}
.mp-badge.warn { background: rgba(234,179,8,0.12); color: #B45309; }
.mp-job-meta {
  font-size: 0.82rem;
  color: var(--text-mute);
  display: flex;
  gap: 1rem;
}

/* ===== PRICING ===== */
.pricing {
  background: var(--bg-light);
}
.pricing-tier {
  margin-bottom: 3rem;
}
.pricing-tier-head {
  margin-bottom: 1.5rem;
}
.pricing-tier-head h3 {
  font-size: 1.5rem;
  margin: 0.5rem 0 0.6rem;
  color: var(--navy-900);
}
.pricing-tier-head p {
  color: var(--text-mute);
  font-size: 0.98rem;
  max-width: 760px;
  line-height: 1.6;
}
.pricing-tier-tag {
  display: inline-block;
  background: rgba(224,140,44,0.12);
  color: var(--amber-600);
  padding: 0.32rem 0.85rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.pricing-tier-tag-soon {
  background: rgba(100,116,139,0.12);
  color: var(--text-mute);
}
.pricing-extra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0 1.5rem;
}
.pricing-extra {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.pricing-extra:hover {
  border-color: var(--amber-500);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.pricing-extra h3 {
  font-size: 1.2rem;
  margin: 0.5rem 0 0.7rem;
  color: var(--navy-900);
}
.pricing-extra p {
  font-size: 0.92rem;
  color: var(--text-mute);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  line-height: 1.55;
}
.pricing-extra-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}
.pricing-extra-price .from {
  color: var(--text-mute);
  font-size: 0.85rem;
  font-weight: 500;
}
.pricing-extra-price .amount {
  color: var(--amber-600);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.pricing-extra-price .unit {
  color: var(--text-mute);
  font-size: 0.85rem;
  font-weight: 500;
}
.pricing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  background: var(--navy-900);
  color: white !important;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: background .2s;
}
.pricing-cta:hover {
  background: var(--amber-500);
  color: white !important;
}

/* TIER D — 3 plany */
.pricing-tier-d {
  margin-top: 3rem;
}
.pricing-extra-grid-solo {
  grid-template-columns: 1fr;
  max-width: 600px;
  margin: 0 auto;
}
.pricing-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.pricing-plan {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.pricing-plan:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--amber-500);
}
.pricing-plan-featured {
  border-color: var(--amber-500);
  border-width: 2px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255,250,240,0.6) 100%);
  box-shadow: 0 8px 24px rgba(224,140,44,0.15);
  transform: translateY(-8px);
}
.pricing-plan-featured:hover {
  transform: translateY(-12px);
}
.pricing-plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
  color: white;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(224,140,44,0.4);
}
.pricing-plan-head {
  padding-bottom: 1.3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.3rem;
}
.pricing-plan-tag {
  display: inline-block;
  background: rgba(224,140,44,0.12);
  color: var(--amber-600);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.pricing-plan h4 {
  font-size: 1.25rem;
  color: var(--navy-900);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}
.pricing-plan-audience {
  font-size: 0.82rem;
  color: var(--text-mute);
  line-height: 1.45;
  margin: 0;
}
.pricing-plan-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
}
.pricing-plan-price .from {
  font-size: 0.85rem;
  color: var(--text-mute);
  font-weight: 500;
}
.pricing-plan-price .amount {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--amber-600);
  letter-spacing: -0.02em;
  line-height: 1;
}
.pricing-plan-price .period {
  font-size: 0.9rem;
  color: var(--text-mute);
  font-weight: 500;
}
.pricing-plan-price .annual {
  flex-basis: 100%;
  font-size: 0.78rem;
  color: var(--text-mute);
  margin-top: 0.3rem;
  font-style: italic;
}
.pricing-plan-features {
  list-style: none;
  margin: 0 0 1.5rem 0;
  padding: 0;
  flex-grow: 1;
}
.pricing-plan-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.55rem;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.5;
}
.pricing-plan-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 14px;
  height: 14px;
  background: var(--amber-500);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / contain;
}
.pricing-plan-features strong {
  color: var(--navy-900);
  font-weight: 700;
}
.pricing-plan-status {
  display: block;
  font-size: 0.78rem;
  color: var(--text-mute);
  font-weight: 600;
  margin-bottom: 1rem;
  padding-top: 0.9rem;
  border-top: 1px dashed var(--border);
}
@media (max-width: 960px) {
  .pricing-plans-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .pricing-plan-featured {
    transform: translateY(0);
  }
  .pricing-plan-featured:hover {
    transform: translateY(-3px);
  }
}
.pricing-table {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

/* Guidelines block */
.guidelines-block {
  margin-top: 3rem;
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.1);
}
.guidelines-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(224,140,44,0.18);
  color: var(--amber-300);
  display: flex;
  align-items: center;
  justify-content: center;
}
.guidelines-icon svg {
  width: 28px;
  height: 28px;
}
.guidelines-block h3 {
  color: white;
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}
.guidelines-block p {
  color: #CBD5E1;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.guidelines-link {
  display: inline-block;
  color: var(--amber-300);
  font-weight: 600;
  font-size: 0.9rem;
}
.guidelines-link:hover {
  color: var(--amber-500);
}

/* Marketplace budget breakdown */
.mp-visual-note,
.mp-visual-foot {
  font-size: 0.82rem;
  color: var(--text-mute);
  line-height: 1.5;
  margin: 0.4rem 0 1rem;
  padding: 0.7rem 0.9rem;
  background: var(--bg-soft);
  border-radius: 8px;
  border-left: 3px solid var(--amber-500);
}
.mp-visual-foot {
  margin-top: 0.8rem;
  margin-bottom: 0;
}
.mp-visual-note strong,
.mp-visual-foot strong {
  color: var(--navy-900);
  font-weight: 600;
}
.mp-job-budget {
  margin: 0.6rem 0;
  padding: 0.7rem 0.9rem;
  background: var(--bg-soft);
  border-radius: 8px;
}
.mp-budget-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.3rem;
}
.mp-budget-label {
  font-size: 0.78rem;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.mp-budget-total {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-900);
}
.mp-budget-split {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--text-mute);
  padding-top: 0.4rem;
  border-top: 1px dashed var(--border);
}
.mp-budget-split strong {
  color: var(--navy-900);
  font-weight: 700;
}
.mp-exec strong { color: #16A34A; }
.mp-fee strong  { color: var(--amber-600); }

@media (max-width: 560px) {
  .guidelines-block {
    flex-direction: column;
    padding: 1.5rem;
  }
  .mp-budget-split {
    flex-direction: column;
    gap: 0.3rem;
  }
}
.pricing-table table {
  width: 100%;
  border-collapse: collapse;
}
.pricing-table th,
.pricing-table td {
  padding: 1.2rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.pricing-table th {
  background: var(--navy-900);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pricing-table tr:last-child td { border-bottom: 0; }
.pricing-table tr:hover td { background: var(--bg-soft); }
.pricing-table .price {
  font-weight: 700;
  color: var(--amber-600);
  font-size: 1.1rem;
}
.pricing-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-mute);
}

/* ===== CONTACT ===== */
.contact {
  background: var(--bg-soft);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact-info h3 { margin-bottom: 1rem; }
.contact-info p { color: var(--text-mute); margin-bottom: 2rem; }
.contact-channels {
  display: grid;
  gap: 1rem;
}
.contact-channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  color: var(--text-strong);
  font-weight: 500;
}
.contact-channel:hover { border-color: var(--amber-500); color: var(--text-strong); }
.contact-channel-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-channel-icon svg { width: 20px; height: 20px; stroke: var(--amber-500); fill: none; stroke-width: 2; }
.contact-channel .label { font-size: 0.78rem; color: var(--text-mute); display: block; }

.contact-socials {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.contact-socials-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.contact-socials-row {
  display: flex;
  gap: 0.6rem;
}
.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: white;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mute);
  transition: all .2s;
}
.social-icon svg {
  width: 20px;
  height: 20px;
}
.social-icon:hover {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: var(--amber-300);
  transform: translateY(-2px);
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.contact-form h3 { margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-strong);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color .2s, box-shadow .2s;
  background: white;
  color: var(--text-strong);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--amber-500);
  box-shadow: 0 0 0 3px rgba(224,140,44,0.12);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-mute);
  margin-bottom: 1.5rem;
}
.form-consent input { width: auto; margin-top: 0.2rem; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-900);
  color: #94A3B8;
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img { height: 40px; margin-bottom: 1rem; display: block; }
.footer-brand p { color: #94A3B8; font-size: 0.9rem; max-width: 320px; }
.footer-col h4 {
  color: white;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col a { color: #94A3B8; font-size: 0.92rem; }
.footer-col a:hover { color: var(--amber-300); }
.footer-link-primary {
  color: var(--amber-300) !important;
  font-weight: 600;
  display: inline-block;
  margin-top: 0.3rem;
}
.footer-link-primary:hover {
  color: var(--amber-500) !important;
}
.footer-link-demo {
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
}
.footer-soon {
  display: inline-block;
  background: rgba(234,179,8,0.2);
  color: #FCD34D;
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero-grid,
  .case-grid,
  .mp-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-visual { height: auto; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  section { padding: 3.5rem 0; }
  .hero { padding: 4rem 0 3.5rem; }
  .hero-stats { grid-template-columns: 1fr; gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .pricing-table th,
  .pricing-table td { padding: 0.8rem 1rem; font-size: 0.85rem; }
  .trust-projects-list { gap: 0.6rem; }
  .trust-big { font-size: 2rem; }
}
