/* Famify Influencer – v2 (match famify.hu look) */
:root {
  --blue: #1697e0; /* primary */
  --blue-dark: #0f78b5;
  --bg: #f3fbff; /* soft blue background */
  --text: #0b1220;
  --muted: #5b6b7a;
  --card: #ffffff;
  --stroke: #d9e7f3;
  --shadow: 0 12px 30px rgba(15, 65, 95, 0.1);
  --shadow2: 0 8px 18px rgba(15, 65, 95, 0.08);
  --r: 18px;
  --r2: 24px;
  --warn: #f5b301; /* sárga */
  --warn-bg: rgba(245, 179, 1, 0.16);
  --warn-stroke: rgba(245, 179, 1, 0.28);

  --danger: #e54b4b; /* piros (opcionális) */
  --danger-bg: rgba(229, 75, 75, 0.14);
  --danger-stroke: rgba(229, 75, 75, 0.25);
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: var(--text);
  background: #fff;
  padding-top: 72px; /* fixed nav */
}

/* NAV */
.navbar-famify {
  background: #fff;
  border-bottom: 1px solid rgba(15, 65, 95, 0.08);
  backdrop-filter: saturate(180%) blur(6px);
}
.brand-text {
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.2px;
}
.navbar .nav-link {
  font-weight: 600;
  color: #1f2937;
  padding: 0.75rem 0.6rem;
}
.navbar .nav-link:hover {
  color: var(--blue);
}
.navbar-toggler {
  border: 0;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler-icon {
  filter: grayscale(1) opacity(0.7);
}

/* BUTTONS */
.btn-brand {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  font-weight: 800;
  border-radius: 999px;
  box-shadow: 0 10px 18px rgba(22, 151, 224, 0.18);
}
.btn-brand:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: #fff;
}
.btn-outline-brand {
  border: 2px solid var(--blue);
  color: var(--blue);
  background: transparent;
  font-weight: 800;
  border-radius: 999px;
}
.btn-outline-brand:hover {
  background: rgba(22, 151, 224, 0.08);
  border-color: var(--blue);
  color: var(--blue);
}

/* HERO */
.hero {
  background: linear-gradient(180deg, var(--bg), #ffffff 70%);
  border-bottom: 1px solid rgba(15, 65, 95, 0.05);
}
.hero-inner {
  padding: 70px 0 50px;
}
.hero-title {
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.hero-lead {
  font-size: 1.05rem;
  color: #223043;
  line-height: 1.55;
  margin-bottom: 18px;
}
.hero-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: #1f2a37;
  font-weight: 600;
}
.hero-list .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue);
  display: inline-block;
  margin-right: 10px;
  position: relative;
  top: 1px;
}

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

/* SECTIONS */
.section {
  padding: 80px 0;
}
.section-soft {
  background: var(--bg);
}
.section-head {
  max-width: 880px;
  margin: 0 auto;
}
.section-title {
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.section-subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
}

/* CARDS */
.card-soft,
.step-card,
.panel,
.form-card {
  background: var(--card);
  border: 1px solid rgba(15, 65, 95, 0.1);
  border-radius: var(--r);
  box-shadow: var(--shadow2);
}
.card-soft {
  padding: 22px;
}
.card-soft h3 {
  font-size: 1.1rem;
  font-weight: 900;
  margin: 0 0 10px;
}
.card-soft p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.step-card {
  padding: 24px;
  text-align: center;
}
.step-ico {
  font-size: 28px;
  margin-bottom: 10px;
}
.step-card h3 {
  font-weight: 900;
  font-size: 1.15rem;
  margin: 0 0 8px;
}
.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.shot {
  border-radius: var(--r2);
  border: 1px solid rgba(15, 65, 95, 0.1);
  box-shadow: var(--shadow2);
}

/* CTA BOX */
.cta-row {
  display: flex;
  justify-content: center;
}
.cta-box {
  background: #fff;
  border: 1px solid rgba(15, 65, 95, 0.1);
  border-radius: var(--r2);
  box-shadow: var(--shadow2);
  padding: 22px 22px;
  width: min(980px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.cta-box.big {
  padding: 26px;
}
.cta-title {
  font-weight: 900;
  font-size: 1.15rem;
}
.cta-sub {
  color: var(--muted);
}

/* PANELS */
.panel {
  padding: 24px;
}
.panel h3 {
  font-weight: 900;
  font-size: 1.2rem;
  margin: 0 0 10px;
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.checklist .check {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(22, 151, 224, 0.12);
  display: inline-grid;
  place-items: center;
  margin-right: 10px;
  position: relative;
  top: 3px;
}
.checklist .check:after {
  content: "✓";
  color: var(--blue);
  font-weight: 900;
  font-size: 12px;
}
.checklist li {
  color: #1f2a37;
  font-weight: 600;
}

/* FORMS */
.form-card {
  padding: 26px;
}
.form-control,
.form-select {
  border-radius: 16px;
  border-color: rgba(15, 65, 95, 0.16);
}
.form-control:focus,
.form-select:focus {
  border-color: rgba(22, 151, 224, 0.65);
  box-shadow: 0 0 0 0.2rem rgba(22, 151, 224, 0.14);
}

/* ACCORDION */
.accordion-famify .accordion-item {
  border: 1px solid rgba(15, 65, 95, 0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow2);
  margin-bottom: 12px;
}
.accordion-famify .accordion-button {
  font-weight: 800;
}
.accordion-famify .accordion-button:focus {
  box-shadow: none;
}
.accordion-famify .accordion-button:not(.collapsed) {
  background: rgba(22, 151, 224, 0.06);
  color: #0b1220;
}

/* FOOTER */
.footer {
  border-top: 1px solid rgba(15, 65, 95, 0.08);
  background: #fff;
}
.footer-link {
  color: #1f2937;
  text-decoration: none;
  font-weight: 600;
}
.footer-link:hover {
  color: var(--blue);
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  body {
    padding-top: 66px;
  }
  .hero-inner {
    padding: 50px 0 34px;
  }
  .cta-box {
    flex-direction: column;
    align-items: stretch;
  }
}

.hero-commission {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  width: fit-content;
  border-radius: 18px;
  background: rgba(22, 151, 224, 0.07);
  border: 1px solid rgba(22, 151, 224, 0.18);
  box-shadow: 0 10px 20px rgba(15, 65, 95, 0.06);
}

.hero-commission__pct {
  font-weight: 900;
  font-size: 30px;
  line-height: 1;
  color: var(--blue); /* nálad a primary kék */
  letter-spacing: -0.02em;
}

.hero-commission__title {
  font-weight: 900;
  color: #0b1220;
  line-height: 1.05;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.hero-commission__sub {
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
}

@media (max-width: 575px) {
  .hero-commission {
    width: 100%;
  }
  .hero-commission__pct {
    font-size: 28px;
  }
}

.hero-list .xmark {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  margin-right: 10px;
  position: relative;
  top: 3px;

  background: var(--warn-bg);
  border: 1px solid var(--warn-stroke);
}

.hero-list .xmark::after {
  content: "✕";
  font-weight: 900;
  font-size: 12px;
  line-height: 1;
  color: var(--warn);
}

/* Optional variants if you ever want red */
.hero-list .xmark--danger {
  background: var(--danger-bg);
  border: 1px solid var(--danger-stroke);
}
.hero-list .xmark--danger::after {
  color: var(--danger);
}

/* STEP BADGES (replace 1-2-3) */
.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 15px;
  width: 30px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.01em;
  width: fit-content;
}

/* primary blue */
.step-badge--blue {
  background: rgba(22, 151, 224, 0.12);
  color: var(--blue);
  border: 1px solid rgba(22, 151, 224, 0.25);
}

/* Rate badge (unified for all cards) */
/* ===== Earn block (more visual, still clean) ===== */

.earn-card {
  background: var(--card);
  border: 1px solid rgba(15, 65, 95, 0.1);
  border-radius: var(--r2);
  box-shadow: var(--shadow2);
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.earn-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    rgba(22, 151, 224, 0.35),
    rgba(22, 151, 224, 0)
  );
}

.earn-top {
  margin-bottom: 14px;
}
.earn-kicker {
  font-weight: 800;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.earn-title {
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

.earn-text {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 18px;
}
.earn-text strong {
  color: #0b1220;
}

.earn-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.earn-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12.5px;
  color: var(--blue);
  background: rgba(22, 151, 224, 0.1);
  border: 1px solid rgba(22, 151, 224, 0.18);
}
.earn-chip--muted {
  color: #2b3a4b;
  background: rgba(15, 65, 95, 0.06);
  border: 1px solid rgba(15, 65, 95, 0.1);
}

.earn-rate {
  background: rgba(245, 179, 1, 0.14);
  border: 1px solid rgba(245, 179, 1, 0.28);
  border-radius: 18px;
  padding: 14px 14px;
  width: fit-content;
}
.earn-rate__big {
  font-weight: 900;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #0b1220;
}
.earn-rate__label {
  margin-top: 4px;
  font-weight: 800;
  color: #2b3a4b;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Bottom CTA full width */
.earn-cta {
  background: #fff;
  border: 1px solid rgba(15, 65, 95, 0.1);
  border-radius: var(--r2);
  box-shadow: var(--shadow2);
  padding: 22px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.earn-cta__title {
  font-weight: 900;
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.earn-cta__sub {
  color: var(--muted);
}

@media (max-width: 991px) {
  .earn-cta {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Variants */
.earn-rate--blue {
  background: rgba(22, 151, 224, 0.1);
  border: 1px solid rgba(22, 151, 224, 0.2);
}
.earn-rate--blue .earn-rate__big {
  color: var(--blue);
}
.earn-rate--blue .earn-rate__label {
  color: #1f2a37;
}

.earn-rate--gold {
  background: rgba(245, 179, 1, 0.14);
  border: 1px solid rgba(245, 179, 1, 0.28);
}

/* Chips (consistent muted style) */
.earn-chip--muted {
  color: #2b3a4b;
  background: rgba(15, 65, 95, 0.06);
  border: 1px solid rgba(15, 65, 95, 0.1);
}

/* Dashboard preview */
.dash-shot {
  background: #fff;
  border: 1px solid rgba(15, 65, 95, 0.1);
  border-radius: var(--r2);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.dash-shot-row {
  display: flex;
  gap: 14px;
  align-items: stretch;
}

.dash-shot--mini {
  flex: 0 0 260px; /* desktop */
  box-shadow: var(--shadow2);
}

.dash-mini-note {
  flex: 1 1 auto;
  background: #fff;
  border: 1px solid rgba(15, 65, 95, 0.1);
  border-radius: var(--r2);
  box-shadow: var(--shadow2);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dash-mini-title {
  font-weight: 900;
  color: var(--text);
  margin-bottom: 4px;
}

.dash-mini-sub {
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.35;
}

.dash-trust {
  font-weight: 800;
  color: #1f2a37;
  background: rgba(22, 151, 224, 0.08);
  border: 1px solid rgba(22, 151, 224, 0.16);
  border-radius: 14px;
  padding: 10px 12px;
}

@media (max-width: 991px) {
  .dash-shot-row {
    flex-direction: column;
  }
  .dash-shot--mini {
    flex: 1 1 auto;
  }
}

section#creator-studio {
  background: #f4f6f8;
}

/* Studio block facelift */
.studio-hero-copy p {
  font-size: 1.05rem;
  line-height: 1.65;
}
.studio-hero-quote {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(22, 151, 224, 0.06);
  border: 1px solid rgba(22, 151, 224, 0.14);
  color: #1f2a37;
  font-weight: 700;
}

.studio-hero-visual img {
  border-radius: calc(var(--r2) - 10px);
}

.studio-card {
  padding: 22px;
}
.studio-card-title {
  font-size: 1.1rem;
  font-weight: 900;
  margin: 0 0 12px;
}
.studio-card--tint {
  background: linear-gradient(
    180deg,
    rgba(22, 151, 224, 0.06),
    rgba(255, 255, 255, 0.95)
  );
}

.studio-bonus {
  background: rgba(245, 179, 1, 0.14);
  border: 1px solid rgba(245, 179, 1, 0.28);
  border-radius: 16px;
  padding: 14px 14px;
}
.studio-bonus__title {
  font-weight: 900;
  margin-bottom: 6px;
  color: #0b1220;
}
.studio-bonus__text {
  color: #2b3a4b;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
}

/* reuse your badge-soft if already exists; if not, keep this */
.badge-soft {
  background: rgba(22, 151, 224, 0.08);
  border: 1px solid rgba(22, 151, 224, 0.18);
  color: var(--blue);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
}

.platform-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 65, 95, 0.12);
  background: #fff;
  box-shadow: var(--shadow2);
  font-weight: 800;
  color: #1f2a37;
  cursor: pointer;
  user-select: none;
}

.platform-pill input {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
}

.platform-panel {
  background: #fff;
  border: 1px solid rgba(15, 65, 95, 0.1);
  border-radius: var(--r2);
  box-shadow: var(--shadow2);
  padding: 16px 16px;
}

.platform-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.platform-panel__title {
  font-weight: 900;
  color: var(--text);
}

.benefit-img {
  display: block;
  width: min(190px, 60%);
  height: auto;
  margin: 0 auto; /* középre */
}

/* ===== Creator Studio: 70% rate badge ===== */
.studio-rate {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(13, 110, 253, 0.1),
    rgba(13, 110, 253, 0.04)
  );
  border: 1px solid rgba(13, 110, 253, 0.18);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.studio-rate__big {
  flex: 0 0 auto;
  min-width: 74px;
  height: 56px;
  padding: 0 14px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: #1697e0;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(13, 110, 253, 0.18);
  box-shadow: 0 10px 22px rgba(13, 110, 253, 0.14);
}

.studio-rate__label {
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #0f172a;
  line-height: 1.1;
  text-transform: lowercase;
}

.studio-rate__sub {
  margin-top: 2px;
  font-size: 14px;
  color: rgba(15, 23, 42, 0.68);
  line-height: 1.25;
}

/* Make it wrap nicely on very small screens */
@media (max-width: 420px) {
  .studio-rate {
    padding: 12px 12px;
    gap: 12px;
  }
  .studio-rate__big {
    min-width: 66px;
    height: 52px;
    font-size: 26px;
  }
}
