/* ═══════════════════════════════════════════
   MINA GROUP — Main Stylesheet v2.0
   ═══════════════════════════════════════════ */

/* ── Import Font ── */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800;900&display=swap');

:root {
  /* Brand */
  --gold: #f5c518;
  --gold-dark: #e0a800;
  --gold-light: #fff8e1;
  --gold-soft: #fef3c7;
  --green: #22c55e;
  --green-dark: #16a34a;
  --teal: #14b8a6;
  --teal-dark: #0d9488;

  /* Neutrals */
  --text: #0f172a;
  --text-soft: #334155;
  --text-muted: #64748b;
  --bg: #f8fafc;
  --card: #ffffff;
  --border: #e2e8f0;
  --border-soft: #f1f5f9;

  /* Feedback */
  --success: #10b981;
  --danger: #ef4444;
  --wa: #25d366;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, .05);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .06), 0 1px 3px rgba(0, 0, 0, .04);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, .07), 0 2px 6px rgba(0, 0, 0, .04);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, .09), 0 4px 12px rgba(0, 0, 0, .05);
  --shadow-xl: 0 24px 60px rgba(0, 0, 0, .12), 0 8px 20px rgba(0, 0, 0, .06);

  /* Radius */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 36px;
}

/* ── Reset ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cairo', 'Segoe UI', Tahoma, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: linear-gradient(160deg, #fffbeb 0%, #f8fafc 35%, #f8fafc 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
select,
textarea {
  font-family: inherit;
}

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
.pub-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: var(--shadow-xs);
}

.pub-header-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-social {
  display: flex;
  gap: 8px;
  align-items: center;
}

.social-link.social-sm {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.social-link.social-sm svg {
  width: 18px;
  height: 18px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo-img {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity .2s;
}

.brand-logo-img:hover {
  opacity: .85;
}

.site-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  /* Remove white BG — logo has white bg so add slight shadow */
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, .08));
}

/* ══════════════════════════════════════
   TICKER
══════════════════════════════════════ */
.ticker-wrap {
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(90deg, #0f172a 0%, #1e293b 100%);
  height: 38px;
  border-bottom: 2px solid var(--gold);
  position: relative;
  z-index: 50;
}

.ticker-label {
  flex-shrink: 0;
  padding: 0 14px 0 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  border-left: 1px solid rgba(245, 197, 24, .3);
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  background: #070f1e;
  letter-spacing: .3px;
}

.ticker-track {
  flex: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
}

.ticker-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-scroll 48s linear infinite;
}

.ticker-content span {
  display: inline-block;
  padding: 0 36px;
  font-size: 12.5px;
  font-weight: 600;
  color: #cbd5e1;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.ticker-content span:last-child {
  border-right: none;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0%);
  }
}

.ticker-wrap:hover .ticker-content {
  animation-play-state: paused;
}

/* ══════════════════════════════════════
   LAYOUT
══════════════════════════════════════ */
.pub-main {
  padding: 24px 0 60px;
}

.pub-container {
  max-width: 660px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  text-align: center;
  padding: 20px 4px 36px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: #78350f;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
  border: 1.5px solid rgba(245, 197, 24, .3);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-dark);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(1.4);
  }
}

.hero-title {
  font-size: clamp(26px, 7vw, 38px);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: clamp(14px, 3.8vw, 16px);
  color: var(--text-soft);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.8;
}

/* Service Cards */
.service-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 540px;
  margin: 0 auto 28px;
}

@media (max-width: 460px) {
  .service-cards {
    grid-template-columns: 1fr;
  }
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 18px 16px;
  border-radius: var(--r-lg);
  border: 2px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  text-align: right;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
}

.course-card::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

.account-card::before {
  background: linear-gradient(90deg, var(--teal), var(--teal-dark));
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.account-card:hover {
  border-color: var(--teal);
}

.service-card-icon {
  font-size: 30px;
}

.service-card-title {
  font-weight: 800;
  font-size: 15px;
  color: var(--text);
}

.service-card-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

.service-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  background: var(--gold-soft);
  color: #78350f;
}

.service-card-badge.accent {
  background: #ccfbf1;
  color: #0f766e;
}

/* Courses Strip */
.courses-strip {
  max-width: 540px;
  margin: 0 auto 26px;
  text-align: right;
}

.courses-strip-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.courses-chips {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.course-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xs);
  transition: border-color .2s, transform .2s;
}

.course-chip:hover {
  border-color: var(--gold);
  transform: translateX(-2px);
}

.chip-num {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1a0a00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 13px;
}

.chip-name {
  font-weight: 700;
  font-size: 14px;
}

/* Hero CTA */
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 400px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #1a0a00;
  font-size: 17px;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(245, 197, 24, .4), 0 3px 8px rgba(224, 168, 0, .3);
  transition: transform .15s, box-shadow .2s;
  margin-bottom: 24px;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(245, 197, 24, .5);
}

.hero-cta svg {
  transform: scaleX(-1);
}

/* Features */
.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
}

@media (max-width: 400px) {
  .hero-features {
    grid-template-columns: 1fr;
  }
}

.feat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 10px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-soft);
}

.feat-ico {
  font-size: 22px;
}

/* ══════════════════════════════════════
   FORM SECTION
══════════════════════════════════════ */
.form-section {
  padding-top: 8px;
}

/* Alert */
.alert {
  padding: 14px 18px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
  border: 1.5px solid transparent;
  display: flex;
  align-items: center;
  gap: 10px;
}

.alert::before {
  font-size: 18px;
}

.alert-error {
  background: #fef2f2;
  color: #991b1b;
  border-color: #fecaca;
}

.alert-error::before {
  content: '⚠️';
}

.alert-success {
  background: #ecfdf5;
  color: #065f46;
  border-color: #a7f3d0;
}

.alert-success::before {
  content: '✅';
}

.alert-info {
  background: #eff6ff;
  color: #1e40af;
  border-color: #bfdbfe;
}

.alert-info::before {
  content: 'ℹ️';
}

/* ── Tab Switcher ── */
.tab-switcher {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  background: #f1f5f9;
  border-radius: var(--r-xl);
  padding: 5px;
  margin-bottom: 20px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, .08);
}

.tab-slider {
  display: none;
  /* handled via active class */
}

.tab-btn {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  border-radius: var(--r-lg);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  transition: all .25s cubic-bezier(.4, 0, .2, 1);
  cursor: pointer;
}

.tab-btn .tab-icon {
  font-size: 18px;
}

.tab-btn.active {
  background: var(--card);
  color: var(--text);
  box-shadow: var(--shadow-md);
}

.tab-btn:nth-child(1).active {
  color: #78350f;
}

.tab-btn:nth-child(2).active {
  color: #0f766e;
}

.tab-btn:hover:not(.active) {
  color: var(--text-soft);
  background: rgba(255, 255, 255, .6);
}

@media (max-width: 400px) {
  .tab-btn .tab-label {
    font-size: 13px;
  }
}

/* ── Tab Panels ── */
.tab-panel {
  display: none;
  animation: fadeSlideIn .3s ease;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Form Card ── */
.form-card {
  background: var(--card);
  border-radius: var(--r-2xl);
  padding: 28px 22px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-soft);
}

@media (min-width: 640px) {
  .form-card {
    padding: 36px 32px;
  }
}

.form-head {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border-soft);
}

.form-head-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.course-icon {
  background: var(--gold-soft);
}

.account-icon {
  background: #ccfbf1;
}

.form-head h2 {
  font-size: clamp(19px, 5vw, 22px);
  font-weight: 900;
}

.form-head-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 3px;
}

/* Account Benefits */
.account-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: #f0fdf9;
  border: 1.5px solid #99f6e4;
  border-radius: var(--r-lg);
  padding: 16px;
  margin-bottom: 22px;
}

@media (max-width: 480px) {
  .account-benefits {
    grid-template-columns: 1fr;
  }
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #0f766e;
}

.benefit-icon {
  font-size: 16px;
  flex-shrink: 0;
}

/* ── Fields ── */
.field {
  margin-bottom: 18px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 480px) {
  .field-row {
    grid-template-columns: 1fr 1fr;
  }
}

.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-soft);
  margin-bottom: 8px;
}

.req {
  color: var(--danger);
}

.field input[type="text"],
.field input[type="tel"],
.field input[type="number"],
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 16px;
  font-size: 15px;
  color: var(--text);
  background: #fafbfc;
  border: 2px solid var(--border);
  border-radius: var(--r-sm);
  outline: none;
  transition: border-color .15s, background .15s, box-shadow .15s;
  appearance: none;
  -webkit-appearance: none;
}

.field textarea {
  min-height: 96px;
  resize: vertical;
  line-height: 1.7;
  padding: 12px 16px;
}

.field select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: 14px center;
  cursor: pointer;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold-dark);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(245, 197, 24, .15);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9ca3af;
}

.field input.error,
.field select.error,
.field textarea.error {
  border-color: var(--danger);
  background: #fef2f2;
}

.hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
}

.err {
  font-size: 12.5px;
  color: var(--danger);
  font-weight: 700;
  margin-top: 6px;
  min-height: 17px;
}

/* Radio */
.opt-row {
  display: flex;
  gap: 10px;
  min-height: 52px;
}

.radio {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  background: #fafbfc;
  border: 2px solid var(--border);
  border-radius: var(--r-sm);
  cursor: pointer;
  font-weight: 700;
  color: var(--text-muted);
  transition: all .15s;
  font-size: 15px;
  user-select: none;
}

.radio input {
  position: absolute;
  opacity: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.radio:hover {
  border-color: #cbd5e1;
}

.radio:has(input:checked) {
  border-color: var(--gold-dark);
  background: var(--gold-soft);
  color: #78350f;
}

/* Market checkboxes */
.market-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.market-check {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #fafbfc;
  border: 2px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all .15s;
  user-select: none;
}

.market-check input {
  display: none;
}

.market-check:has(input:checked) {
  border-color: var(--teal-dark);
  background: #ccfbf1;
  color: #0f766e;
}

.market-check:hover {
  border-color: #94a3b8;
}

/* Checkbox */
.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 0 6px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  cursor: pointer;
  user-select: none;
}

.check input {
  margin-top: 3px;
  width: 20px;
  height: 20px;
  min-width: 20px;
  accent-color: var(--gold-dark);
  cursor: pointer;
}

/* Buttons */
.submit-btn {
  position: relative;
  width: 100%;
  height: 58px;
  margin-top: 10px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 800;
  transition: transform .15s, box-shadow .2s, opacity .2s;
  overflow: hidden;
}

.course-btn {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #1a0a00;
  box-shadow: 0 8px 24px rgba(245, 197, 24, .4), 0 3px 8px rgba(224, 168, 0, .25);
}

.course-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(245, 197, 24, .5);
}

.account-btn {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(20, 184, 166, .35), 0 3px 8px rgba(13, 148, 136, .25);
}

.account-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(20, 184, 166, .45);
}

.submit-btn:disabled {
  opacity: .7;
  cursor: not-allowed;
}

.submit-btn .btn-text {
  transition: opacity .2s;
}

.submit-btn.loading .btn-text {
  opacity: 0;
}

.btn-loader {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 26px;
  height: 26px;
  border: 3px solid rgba(255, 255, 255, .25);
  border-top-color: #fff;
  border-radius: 50%;
  opacity: 0;
  animation: spin .7s linear infinite;
}

.course-btn .btn-loader {
  border-top-color: #1a0a00;
  border-color: rgba(26, 10, 0, .2);
  border-top-color: #1a0a00;
}

.submit-btn.loading .btn-loader {
  opacity: 1;
}

@keyframes spin {
  to {
    transform: translate(50%, -50%) rotate(360deg);
  }
}

/* ══════════════════════════════════════
   SUCCESS PAGE
══════════════════════════════════════ */
.success-card {
  background: var(--card);
  border-radius: var(--r-2xl);
  padding: 40px 24px;
  text-align: center;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-soft);
  margin-top: 10px;
}

@media (min-width: 640px) {
  .success-card {
    padding: 52px 44px;
  }
}

.success-check {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  position: relative;
}

.success-check svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.success-check circle {
  stroke: var(--gold);
  stroke-width: 2;
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
  animation: drawCircle .8s ease forwards;
}

.success-check path {
  stroke: var(--success);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 38;
  stroke-dashoffset: 38;
  animation: drawCheck .5s .6s ease forwards;
}

@keyframes drawCircle {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}

.success-badge {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}

.course-badge {
  background: var(--gold-soft);
  color: #78350f;
}

.account-badge {
  background: #ccfbf1;
  color: #0f766e;
}

.success-title {
  font-size: clamp(22px, 6vw, 28px);
  font-weight: 900;
  margin-bottom: 12px;
}

.success-sub {
  font-size: 15px;
  color: var(--text-soft);
  margin-bottom: 28px;
  line-height: 1.8;
}

.success-info {
  background: #fafbfc;
  border-radius: var(--r-lg);
  padding: 18px;
  margin: 0 auto 24px;
  max-width: 440px;
  text-align: right;
  border: 1.5px solid var(--border-soft);
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 14px;
  gap: 10px;
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  color: var(--text-muted);
  font-weight: 600;
}

.info-val {
  font-weight: 800;
  color: var(--text);
  text-align: left;
  word-break: break-word;
}

.info-code {
  padding: 4px 12px;
  background: var(--gold-soft);
  color: #78350f;
  border-radius: 8px;
  font-weight: 900;
  font-family: 'Courier New', monospace;
  letter-spacing: .5px;
}

.course-val {
  color: #1d4ed8;
}

.account-val {
  color: #0f766e;
  font-weight: 800;
}

/* Success Steps */
.success-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 auto 28px;
  max-width: 380px;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e2e8f0;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  transition: all .3s;
}

.step-item:first-child .step-num {
  background: var(--success);
  color: #fff;
  box-shadow: 0 4px 12px rgba(16, 185, 129, .3);
}

.step-text {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.step-item:first-child .step-text {
  color: var(--success);
}

.step-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--success) 0%, #e2e8f0 100%);
  margin-bottom: 18px;
  min-width: 30px;
}

.success-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 420px;
  height: 56px;
  border-radius: 16px;
  background: var(--wa);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .35);
  transition: transform .15s, box-shadow .2s;
}

.success-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(37, 211, 102, .45);
}

.success-home {
  display: block;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 14px;
  margin-top: 6px;
  transition: color .15s;
}

.success-home:hover {
  color: var(--text);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.pub-footer {
  margin-top: 44px;
  padding: 24px 18px;
  border-top: 1px solid var(--border-soft);
}

.pub-footer-inner {
  max-width: 660px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
  opacity: .75;
  transition: opacity .2s;
  filter: grayscale(20%);
}

.footer-logo:hover {
  opacity: 1;
  filter: none;
}

.footer-copy {
  font-size: 12px;
}

.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  transition: transform .2s, box-shadow .2s, background .2s;
  color: #fff;
}

.social-tg {
  background: linear-gradient(135deg, #229ED9 0%, #0088cc 100%);
  box-shadow: 0 4px 12px rgba(34, 158, 217, .35);
}

.social-tg:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(34, 158, 217, .5);
}

.social-ig {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 4px 12px rgba(220, 39, 67, .35);
}

.social-ig:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(220, 39, 67, .5);
}

/* ══════════════════════════════════════
   FOOTER DEVELOPER (Ahan Arzaki)
══════════════════════════════════════ */
.footer-developer {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.dev-label {
  font-size: 11px;
  color: var(--text-muted);
  opacity: .75;
  letter-spacing: .3px;
}

.dev-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 14px;
  background: linear-gradient(135deg, rgba(240,148,51,.12) 0%, rgba(220,39,67,.12) 50%, rgba(188,24,136,.12) 100%);
  border: 1px solid rgba(220,39,67,.2);
  border-radius: 999px;
  text-decoration: none;
  color: var(--text-regular);
  transition: all .25s ease;
  backdrop-filter: blur(4px);
}

.dev-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(220,39,67,.15);
  border-color: rgba(220,39,67,.45);
  color: var(--text-primary);
}

.dev-icon {
  font-size: 16px;
  line-height: 1;
}

.dev-name {
  font-size: 13px;
  line-height: 1;
}

.dev-name strong {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.dev-link svg {
  flex-shrink: 0;
  color: #dc2743;
  transition: transform .2s;
}

.dev-link:hover svg {
  transform: rotate(10deg) scale(1.1);
}

@media (max-width: 520px) {
  .footer-developer {
    width: 100%;
  }
  .dev-link {
    width: 100%;
    justify-content: center;
  }
}

/* ══════════════════════════════════════
   SCROLLBAR
══════════════════════════════════════ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 999px;
}