/* ============================================================
   MyFurKid — Golden Retriever Landing Page
   myfurkid.online/golden-retriever/
   ============================================================ */

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

:root {
  --gold:    #c4781e;
  --gold-lt: #f5a23a;
  --gold-dk: #9a5d0a;
  --white:   #ffffff;
  --off:     #fdf8f2;
  --gray:    #4a4a4a;
  --gray-lt: #f0f0f0;
  --red:     #dc3545;
  --green:   #28a745;
  --radius:  10px;
  --shadow:  0 4px 24px rgba(0,0,0,.12);
}

body { font-family: 'Segoe UI', system-ui, sans-serif; background: var(--off); color: var(--gray); }

/* ── HERO ─────────────────────────────────────────────────── */
.mfk-hero {
  background: linear-gradient(135deg, #1a0a00 0%, #5c2d00 50%, #8b4513 100%);
  color: var(--white);
  padding: 60px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mfk-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.mfk-hero-inner { position: relative; max-width: 720px; margin: 0 auto; }

.mfk-badge {
  display: inline-block;
  background: var(--gold-lt);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.mfk-hero h1 {
  font-size: clamp(26px, 5vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.mfk-hero h1 span { color: var(--gold-lt); }
.mfk-hero p.subtitle {
  font-size: clamp(15px, 2.5vw, 18px);
  opacity: .88;
  max-width: 580px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.mfk-proof {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.mfk-proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  opacity: .9;
}
.mfk-proof-item svg { width: 18px; height: 18px; fill: var(--gold-lt); flex-shrink: 0; }

/* ── FORM CARD ────────────────────────────────────────────── */
.mfk-form-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 36px 32px;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}
.mfk-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold-lt));
  border-radius: 16px 16px 0 0;
}

.mfk-form-card h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray);
  margin-bottom: 6px;
  text-align: center;
}
.mfk-form-card .form-sub {
  text-align: center;
  font-size: 13px;
  color: #888;
  margin-bottom: 24px;
}

.mfk-field {
  margin-bottom: 16px;
}
.mfk-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 6px;
}
.mfk-field label span.req { color: var(--gold); margin-left: 2px; }

.mfk-field input,
.mfk-field select {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid #e8e8e8;
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--gray);
  background: #fdfdfd;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
}
.mfk-field input:focus,
.mfk-field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,120,30,.15);
}
.mfk-field input::placeholder { color: #bbb; }

.mfk-field .hint {
  font-size: 11px;
  color: #aaa;
  margin-top: 4px;
}

/* select arrow */
.mfk-select-wrap { position: relative; }
.mfk-select-wrap::after {
  content: '▾';
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  pointer-events: none;
  font-size: 14px;
}

.mfk-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--gold-dk), var(--gold-lt));
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  margin-top: 8px;
  letter-spacing: .02em;
  transition: transform .15s, box-shadow .15s, opacity .15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.mfk-btn:hover  { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(196,120,30,.4); }
.mfk-btn:active { transform: translateY(0); }
.mfk-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; box-shadow: none; }
.mfk-btn svg { width: 20px; height: 20px; fill: #fff; }

.mfk-privacy {
  text-align: center;
  font-size: 11px;
  color: #aaa;
  margin-top: 12px;
  line-height: 1.5;
}

/* ── STATUS MESSAGES ──────────────────────────────────────── */
#mfk-msg {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
#mfk-msg.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; display: block; }
#mfk-msg.error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; display: block; }

/* Spinner inside button */
.mfk-spinner {
  width: 18px; height: 18px;
  border: 3px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: mfk-spin .7s linear infinite;
  display: none;
}
.mfk-btn.loading .mfk-spinner { display: block; }
.mfk-btn.loading .btn-label   { display: none; }

@keyframes mfk-spin { to { transform: rotate(360deg); } }

/* ── BENEFITS STRIP ───────────────────────────────────────── */
.mfk-benefits {
  background: var(--white);
  padding: 48px 20px;
  text-align: center;
}
.mfk-benefits h2 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  color: var(--gray);
  margin-bottom: 36px;
}
.mfk-benefits h2 span { color: var(--gold); }

.mfk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.mfk-card {
  background: var(--off);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: left;
  border-top: 3px solid var(--gold-lt);
}
.mfk-card-icon {
  font-size: 32px;
  margin-bottom: 14px;
}
.mfk-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--gray); }
.mfk-card p  { font-size: 14px; line-height: 1.6; color: #666; }

/* ── WHAT'S INSIDE ────────────────────────────────────────── */
.mfk-inside {
  background: linear-gradient(135deg, #fdf3e7, #fff8f0);
  padding: 56px 20px;
}
.mfk-inside-inner { max-width: 720px; margin: 0 auto; }
.mfk-inside h2 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 32px;
  color: var(--gray);
}
.mfk-inside h2 span { color: var(--gold); }

.mfk-toc-list { list-style: none; }
.mfk-toc-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #edd;
  font-size: 15px;
  line-height: 1.5;
}
.mfk-toc-list li:last-child { border-bottom: none; }
.mfk-toc-num {
  min-width: 28px; height: 28px;
  background: var(--gold);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.mfk-toc-text strong { display: block; font-weight: 700; color: var(--gray); }
.mfk-toc-text span   { font-size: 13px; color: #888; }

/* ── SOCIAL PROOF ─────────────────────────────────────────── */
.mfk-proof-section {
  background: var(--white);
  padding: 48px 20px;
  text-align: center;
}
.mfk-proof-section h2 {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 800;
  margin-bottom: 28px;
  color: var(--gray);
}
.mfk-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}
.mfk-testimonial {
  background: var(--off);
  border-radius: var(--radius);
  padding: 22px 20px;
  text-align: left;
  border-left: 3px solid var(--gold-lt);
}
.mfk-stars { color: var(--gold-lt); font-size: 16px; margin-bottom: 10px; }
.mfk-testimonial p  { font-size: 14px; color: #555; line-height: 1.6; font-style: italic; margin-bottom: 12px; }
.mfk-testimonial cite { font-size: 13px; font-weight: 700; color: var(--gray); font-style: normal; }
.mfk-testimonial cite span { font-weight: 400; color: #999; }

/* ── BOTTOM CTA ───────────────────────────────────────────── */
.mfk-cta-bottom {
  background: linear-gradient(135deg, #1a0a00, #5c2d00);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}
.mfk-cta-bottom h2 {
  font-size: clamp(20px, 3.5vw, 32px);
  font-weight: 800;
  margin-bottom: 12px;
}
.mfk-cta-bottom h2 span { color: var(--gold-lt); }
.mfk-cta-bottom p {
  font-size: 16px;
  opacity: .85;
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.mfk-cta-bottom .mfk-form-card { max-width: 460px; }

/* ── SUCCESS STATE ────────────────────────────────────────── */
.mfk-success-state {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.mfk-success-state.visible { display: block; }
.mfk-success-icon {
  font-size: 56px;
  margin-bottom: 16px;
}
.mfk-success-state h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 8px;
}
.mfk-success-state p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 520px) {
  .mfk-form-card { padding: 28px 20px; }
  .mfk-hero      { padding: 48px 16px 64px; }
}
