/* ==============================================
   Love & Marriage Numerology Calculator
   Plugin CSS — lmn-style.css
   All classes prefixed with .lmn-
   ============================================== */

/* ── Tokens ── */
.lmn-wrap {
  --lmn-bg:        #fdf8f4;
  --lmn-white:     #ffffff;
  --lmn-pink-bg:   #fce8f0;
  --lmn-pink-mid:  #f0c8d8;
  --lmn-rose:      #b8295a;
  --lmn-rose-d:    #8e1f43;
  --lmn-rose-l:    #e8a0b8;
  --lmn-purple:    #5b3fa6;
  --lmn-purple-l:  #8b6fd4;
  --lmn-gold:      #c47a0a;
  --lmn-teal:      #0f7a6e;
  --lmn-text:      #1a0a22;
  --lmn-text-mid:  #3d1f4a;
  --lmn-text-muted:#7a5888;
  --lmn-border:    #e8d0e0;
  --lmn-shadow:    0 4px 24px rgba(184,41,90,0.09);
  --lmn-r:         14px;
  --lmn-rs:        8px;

  font-family: 'Nunito', 'Segoe UI', sans-serif;
  color: var(--lmn-text);
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px 60px;
  box-sizing: border-box;
}

.lmn-wrap *, .lmn-wrap *::before, .lmn-wrap *::after {
  box-sizing: border-box;
}

/* ── Cross banner ── */
.lmn-cb {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  background: var(--lmn-white);
  border: 1px solid var(--lmn-border);
  border-radius: var(--lmn-rs);
  padding: 11px 16px;
  margin-bottom: 28px;
  font-size: 13px;
}
.lmn-cb-label { color: var(--lmn-text-muted); font-weight: 700; white-space: nowrap; }
.lmn-cb a { color: var(--lmn-purple); font-weight: 700; text-decoration: none; }
.lmn-cb a:hover { text-decoration: underline; }
.lmn-cb-pill {
  margin-left: auto;
  font-size: 11px; font-weight: 700;
  background: var(--lmn-pink-bg);
  color: var(--lmn-rose);
  border: 1px solid var(--lmn-pink-mid);
  border-radius: 20px;
  padding: 4px 11px;
  white-space: nowrap;
}

/* ── Hero ── */
.lmn-hero { text-align: center; margin-bottom: 24px; }
.lmn-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--lmn-pink-bg);
  border: 1px solid var(--lmn-pink-mid);
  border-radius: 20px; padding: 5px 14px;
  font-size: 12px; font-weight: 800;
  color: var(--lmn-rose);
  letter-spacing: .4px; margin-bottom: 14px;
}
.lmn-h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4.5vw, 2.7rem);
  font-weight: 400; line-height: 1.2;
  color: var(--lmn-text); margin: 0 0 10px;
}
.lmn-h1 em { font-style: italic; color: var(--lmn-rose); }
.lmn-hero-p {
  color: var(--lmn-text-muted); font-size: 14px;
  max-width: 500px; margin: 0 auto 18px; line-height: 1.8;
}
.lmn-stats {
  display: inline-flex;
  border: 1px solid var(--lmn-border);
  border-radius: var(--lmn-rs);
  overflow: hidden; background: var(--lmn-white);
  box-shadow: var(--lmn-shadow);
}
.lmn-stat {
  padding: 10px 18px; text-align: center;
  border-right: 1px solid var(--lmn-border);
  display: flex; flex-direction: column; gap: 2px;
}
.lmn-stat:last-child { border-right: none; }
.lmn-sv { font-size: 15px; font-weight: 800; color: var(--lmn-rose); }
.lmn-sl { font-size: 10px; text-transform: uppercase; letter-spacing: .5px; color: var(--lmn-text-muted); }

/* ── Form card ── */
.lmn-card {
  background: var(--lmn-white);
  border: 1px solid var(--lmn-border);
  border-radius: var(--lmn-r);
  padding: 26px 24px 22px;
  box-shadow: var(--lmn-shadow);
  margin-bottom: 14px;
}
.lmn-sec-lbl {
  font-size: 11px; font-weight: 800;
  color: var(--lmn-rose);
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 12px;
}
.lmn-pgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}
@media (max-width: 560px) {
  .lmn-pgrid { grid-template-columns: 1fr; }
}
.lmn-pblock {
  background: var(--lmn-pink-bg);
  border: 1px solid var(--lmn-pink-mid);
  border-radius: var(--lmn-rs);
  padding: 16px;
}
.lmn-plabel {
  font-size: 11px; font-weight: 800;
  color: var(--lmn-rose);
  text-transform: uppercase; letter-spacing: .5px;
  margin-bottom: 12px;
}
.lmn-nrow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-bottom: 9px;
}
@media (max-width: 380px) {
  .lmn-nrow { grid-template-columns: 1fr; }
}
.lmn-field label {
  display: block;
  font-size: 11px; font-weight: 700;
  color: var(--lmn-text-muted);
  margin-bottom: 4px;
}
.lmn-field input {
  width: 100%;
  padding: 9px 11px;
  background: var(--lmn-white);
  border: 1px solid var(--lmn-pink-mid);
  border-radius: var(--lmn-rs);
  font-size: 14px; color: var(--lmn-text);
  font-family: inherit;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.lmn-field input:focus {
  border-color: var(--lmn-rose);
  box-shadow: 0 0 0 3px rgba(184,41,90,0.1);
}
.lmn-field input::placeholder { color: var(--lmn-text-muted); }

/* DOB selects */
.lmn-dobrow {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-top: 9px;
}
.lmn-dob-field label {
  display: block;
  font-size: 11px; font-weight: 700;
  color: var(--lmn-text-muted);
  margin-bottom: 4px;
}
.lmn-dob-field select {
  width: 100%;
  padding: 9px 8px;
  background: var(--lmn-white);
  border: 1px solid var(--lmn-pink-mid);
  border-radius: var(--lmn-rs);
  font-size: 13px; color: var(--lmn-text);
  font-family: inherit;
  outline: none;
  cursor: pointer;
  appearance: auto;
  -webkit-appearance: auto;
  transition: border-color .2s;
}
.lmn-dob-field select:focus { border-color: var(--lmn-rose); }

/* Relationship buttons */
.lmn-relwrap { margin-bottom: 18px; }
.lmn-relbtns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 9px;
}
@media (max-width: 380px) {
  .lmn-relbtns { grid-template-columns: 1fr; }
}
.lmn-rbtn {
  padding: 11px 8px;
  border-radius: var(--lmn-rs);
  border: 1.5px solid var(--lmn-border);
  background: var(--lmn-white);
  font-size: 13px; font-weight: 700;
  color: var(--lmn-text-muted);
  cursor: pointer; font-family: inherit;
  transition: all .2s; text-align: center;
}
.lmn-rbtn.lmn-active {
  background: var(--lmn-pink-bg);
  border-color: var(--lmn-rose);
  color: var(--lmn-rose);
}
.lmn-rbtn:hover:not(.lmn-active) { border-color: var(--lmn-rose-l); }

/* Submit button */
.lmn-cbtn {
  width: 100%; padding: 15px;
  background: var(--lmn-rose);
  border: none; border-radius: var(--lmn-rs);
  cursor: pointer; color: #fff;
  font-size: 15px; font-weight: 800;
  font-family: inherit; letter-spacing: .3px;
  box-shadow: 0 4px 18px rgba(184,41,90,0.3);
  transition: background .2s, transform .15s;
}
.lmn-cbtn:hover { background: var(--lmn-rose-d); transform: translateY(-1px); }
.lmn-cbtn:active { transform: translateY(0); }
.lmn-error {
  color: var(--lmn-rose); font-size: 13px; font-weight: 700;
  margin-top: 10px; text-align: center;
}

/* ── Promo card ── */
.lmn-promo {
  display: flex; align-items: center; gap: 13px;
  background: var(--lmn-white);
  border: 1px solid var(--lmn-border);
  border-radius: var(--lmn-r);
  padding: 15px 18px; margin-bottom: 28px;
  text-decoration: none;
  transition: box-shadow .2s, transform .15s;
}
.lmn-promo:hover { box-shadow: var(--lmn-shadow); transform: translateY(-2px); }
.lmn-promo-icon { font-size: 22px; flex-shrink: 0; }
.lmn-promo-text strong { display: block; color: var(--lmn-purple); font-size: 13px; font-weight: 800; margin-bottom: 2px; }
.lmn-promo-text span { color: var(--lmn-text-muted); font-size: 12px; }
.lmn-promo-arr { color: var(--lmn-rose); font-size: 18px; margin-left: auto; }

/* ── Loading ── */
.lmn-loading { text-align: center; padding: 48px 20px; }
.lmn-spinner {
  width: 48px; height: 48px;
  border: 3px solid var(--lmn-pink-mid);
  border-top-color: var(--lmn-rose);
  border-radius: 50%;
  animation: lmn-spin .8s linear infinite;
  margin: 0 auto 16px;
}
@keyframes lmn-spin { to { transform: rotate(360deg); } }
.lmn-load-msg { font-size: 15px; color: var(--lmn-text-muted); font-style: italic; }

/* ── Results ── */
#lmn-results { animation: lmn-fadeUp .5s ease both; }
@keyframes lmn-fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

/* Banner */
.lmn-banner {
  background: linear-gradient(135deg, var(--lmn-rose) 0%, #7c1f48 100%);
  border-radius: var(--lmn-r); padding: 30px 24px;
  margin-bottom: 14px; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.lmn-banner::before {
  content: '💍'; position: absolute; right: 20px; top: 50%;
  transform: translateY(-50%); font-size: 60px; opacity: .1;
}
.lmn-banner-couple { font-size: 13px; opacity: .8; letter-spacing: .5px; margin-bottom: 8px; }
.lmn-banner-pct {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 5rem; font-weight: 700; line-height: 1; color: #ffe0a0;
}
.lmn-banner-lbl { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; opacity: .75; margin: 4px 0 10px; }
.lmn-banner-title { font-size: 18px; font-weight: 800; }
.lmn-banner-sub { font-size: 13px; opacity: .8; margin-top: 5px; font-style: italic; max-width: 480px; margin-left: auto; margin-right: auto; }

/* Dimension rings */
.lmn-rings {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px; margin-bottom: 14px;
}
@media (max-width: 600px) { .lmn-rings { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 380px) { .lmn-rings { grid-template-columns: repeat(3, 1fr); } }
.lmn-ring-box {
  background: var(--lmn-white); border: 1px solid var(--lmn-border);
  border-radius: var(--lmn-rs); padding: 12px 8px; text-align: center;
  box-shadow: var(--lmn-shadow);
}
.lmn-ring-box svg { transform: rotate(-90deg); display: block; margin: 0 auto 4px; }
.lmn-ring-bg { fill: none; stroke: var(--lmn-pink-mid); stroke-width: 4; }
.lmn-ring-fg { fill: none; stroke-width: 4; stroke-linecap: round; transition: stroke-dashoffset 1.5s cubic-bezier(.22,1,.36,1); }
.lmn-ring-num { font-family: 'Playfair Display', Georgia, serif; font-size: 1.3rem; font-weight: 700; color: var(--lmn-rose); line-height: 1; }
.lmn-ring-lbl { font-size: 9px; text-transform: uppercase; letter-spacing: .4px; color: var(--lmn-text-muted); margin-top: 4px; line-height: 1.3; }

/* Core numbers grid */
.lmn-num-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px; margin: 10px 0;
}
@media (max-width: 400px) { .lmn-num-grid { grid-template-columns: repeat(2, 1fr); } }
.lmn-nbox {
  background: var(--lmn-pink-bg); border: 1px solid var(--lmn-pink-mid);
  border-radius: var(--lmn-rs); padding: 14px 10px; text-align: center;
}
.lmn-nbox-n { font-family: 'Playfair Display', Georgia, serif; font-size: 2.2rem; color: var(--lmn-rose); font-weight: 700; line-height: 1; }
.lmn-nbox-l { font-size: 10px; color: var(--lmn-text-muted); text-transform: uppercase; letter-spacing: .4px; margin-top: 3px; }
.lmn-nbox-p { font-size: 11px; color: var(--lmn-purple); font-weight: 700; margin-top: 2px; }

/* Section cards */
.lmn-sec-card {
  background: var(--lmn-white); border: 1px solid var(--lmn-border);
  border-radius: var(--lmn-r); padding: 20px 22px; margin-bottom: 12px;
  box-shadow: var(--lmn-shadow); position: relative; overflow: hidden;
}
.lmn-sec-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--lmn-rose), var(--lmn-purple));
}
.lmn-card-h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem; font-weight: 600; color: var(--lmn-text);
  margin: 0 0 3px; display: flex; align-items: center; gap: 8px;
}
.lmn-sub-lbl {
  font-size: 10px; font-weight: 800; color: var(--lmn-rose);
  letter-spacing: .7px; text-transform: uppercase; margin-bottom: 12px;
}
.lmn-sec-card p {
  font-size: 13.5px; color: var(--lmn-text-mid); line-height: 1.8; margin: 0 0 8px;
}
.lmn-narrative {
  background: linear-gradient(135deg, var(--lmn-pink-bg), #fff0f7);
  border: 1px solid var(--lmn-pink-mid); border-radius: var(--lmn-rs);
  padding: 13px 15px; margin-top: 10px;
  font-size: 13px; color: var(--lmn-text-mid); line-height: 1.8; font-style: italic;
}
.lmn-narrative strong { color: var(--lmn-rose); font-style: normal; }

/* Feature 2-col cards */
.lmn-feat-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-bottom: 12px;
}
@media (max-width: 520px) { .lmn-feat-row { grid-template-columns: 1fr; } }
.lmn-feat-card {
  background: var(--lmn-white); border: 1px solid var(--lmn-border);
  border-radius: var(--lmn-r); padding: 18px;
  box-shadow: var(--lmn-shadow); position: relative; overflow: hidden;
}
.lmn-feat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--lmn-rose), var(--lmn-purple));
}
.lmn-fi { font-size: 18px; margin-bottom: 7px; }
.lmn-feat-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: .95rem; font-weight: 600; color: var(--lmn-text); margin: 0 0 8px;
}
.lmn-score-row { display: flex; align-items: center; gap: 9px; margin-bottom: 8px; }
.lmn-sn { font-family: 'Playfair Display', Georgia, serif; font-size: 1.6rem; color: var(--lmn-rose); font-weight: 700; }
.lmn-bwrap { flex: 1; height: 6px; background: var(--lmn-pink-mid); border-radius: 3px; overflow: hidden; }
.lmn-bfill {
  height: 100%; border-radius: 3px;
  background: linear-gradient(90deg, var(--lmn-rose), var(--lmn-purple));
  width: 0; transition: width 1.4s cubic-bezier(.22,1,.36,1);
}
.lmn-feat-card p { font-size: 12.5px; color: var(--lmn-text-mid); line-height: 1.75; margin: 0; }
.lmn-insight {
  font-size: 11.5px; color: var(--lmn-purple); font-style: italic;
  margin-top: 8px; padding-top: 8px; border-top: 1px dashed var(--lmn-border);
}

/* Tags */
.lmn-tag-row { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 10px; }
.lmn-tag {
  padding: 4px 11px; border-radius: 20px;
  font-size: 11px; font-weight: 700;
  background: var(--lmn-pink-bg); border: 1px solid var(--lmn-pink-mid);
  color: var(--lmn-text-muted);
}
.lmn-tag.lmn-hi  { background: var(--lmn-rose);   color: #fff; border-color: var(--lmn-rose); }
.lmn-tag.lmn-pu  { background: var(--lmn-purple); color: #fff; border-color: var(--lmn-purple); }
.lmn-tag.lmn-go  { background: #e8f5e9; color: var(--lmn-teal);  border-color: #b2dfdb; }
.lmn-tag.lmn-am  { background: #fff3e0; color: var(--lmn-gold);  border-color: #ffe0b2; }

/* Timing year blocks */
.lmn-year-block {
  display: inline-block; border-radius: var(--lmn-rs);
  padding: 10px 16px; margin: 5px 5px 0 0; text-align: center;
}
.lmn-year-block.prime { background: var(--lmn-rose); color: #fff; border: 1px solid var(--lmn-rose); }
.lmn-year-block.good  { background: var(--lmn-pink-bg); color: var(--lmn-text-mid); border: 1px solid var(--lmn-pink-mid); }
.lmn-year-block .ynum { font-family: 'Playfair Display', Georgia, serif; font-size: 1.4rem; font-weight: 700; }
.lmn-year-block .ylbl { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; margin-top: 2px; }

/* Remedies */
.lmn-remedy {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid var(--lmn-border);
}
.lmn-remedy:last-child { border-bottom: none; }
.lmn-remedy-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.lmn-remedy-title { font-size: 13px; font-weight: 800; color: var(--lmn-text); margin-bottom: 4px; }
.lmn-remedy-desc { font-size: 13px; color: var(--lmn-text-mid); line-height: 1.75; }

/* CTA strip */
.lmn-cta {
  background: var(--lmn-pink-bg); border: 1.5px solid var(--lmn-pink-mid);
  border-radius: var(--lmn-r); padding: 24px; text-align: center; margin: 20px 0;
}
.lmn-cta h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem; color: var(--lmn-text); margin: 0 0 6px;
}
.lmn-cta p { color: var(--lmn-text-muted); font-size: 13px; margin: 0 0 16px; }
.lmn-cta a {
  display: inline-block; padding: 12px 28px;
  background: var(--lmn-rose); color: #fff; border-radius: 30px;
  font-weight: 800; font-size: 14px; text-decoration: none;
  box-shadow: 0 4px 16px rgba(184,41,90,0.3);
  transition: background .2s, transform .15s;
}
.lmn-cta a:hover { background: var(--lmn-rose-d); transform: translateY(-1px); }

.lmn-reset {
  display: block; margin: 18px auto 0;
  padding: 10px 26px; background: transparent;
  border: 1.5px solid var(--lmn-border); border-radius: 30px;
  cursor: pointer; color: var(--lmn-rose);
  font-size: 14px; font-weight: 700; font-family: inherit;
  transition: all .2s;
}
.lmn-reset:hover { background: var(--lmn-pink-bg); }

/* ── SEO Block ── */
.lmn-seo { margin-top: 50px; border-top: 2px solid var(--lmn-border); padding-top: 38px; }
.lmn-seo-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--lmn-pink-bg); border: 1px solid var(--lmn-pink-mid);
  border-radius: 6px; padding: 4px 11px;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--lmn-rose); margin-bottom: 16px; font-weight: 800;
}
.lmn-seo-h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.3rem, 4vw, 1.75rem);
  font-weight: 600; color: var(--lmn-text); margin: 0 0 10px; line-height: 1.3;
}
.lmn-seo p { color: var(--lmn-text-mid); font-size: 14px; line-height: 1.85; margin-bottom: 14px; }
.lmn-seo-h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem; font-weight: 600; color: var(--lmn-rose); margin: 22px 0 8px;
}
.lmn-ul { list-style: none; padding: 0; margin: 0 0 14px; }
.lmn-ul li {
  color: var(--lmn-text-mid); font-size: 14px; line-height: 1.8;
  padding-left: 18px; position: relative; margin-bottom: 5px;
}
.lmn-ul li::before { content: '♥'; position: absolute; left: 0; color: var(--lmn-rose-l); font-size: 10px; top: 4px; }
.lmn-table {
  width: 100%; border-collapse: collapse; margin: 12px 0 14px;
  font-size: 13px; border: 1px solid var(--lmn-border); border-radius: var(--lmn-rs);
  overflow: hidden;
}
.lmn-table th {
  text-align: left; padding: 9px 13px;
  background: var(--lmn-pink-bg); color: var(--lmn-rose);
  font-weight: 800; border-bottom: 1px solid var(--lmn-pink-mid);
}
.lmn-table td { padding: 9px 13px; border-bottom: 1px solid var(--lmn-border); color: var(--lmn-text-mid); vertical-align: top; }
.lmn-table tr:last-child td { border-bottom: none; }
.lmn-table td:first-child { color: var(--lmn-text); font-weight: 700; white-space: nowrap; }

/* FAQ */
.lmn-faq-item { border-bottom: 1px solid var(--lmn-border); }
.lmn-faq-item:last-child { border-bottom: none; }
.lmn-faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  color: var(--lmn-text); font-size: 14px; font-weight: 700;
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; text-align: left; font-family: inherit;
  transition: color .2s;
}
.lmn-faq-q:hover { color: var(--lmn-rose); }
.lmn-faq-q span { color: var(--lmn-rose); font-size: 14px; transition: transform .25s; flex-shrink: 0; margin-left: 10px; }
.lmn-faq-q.lmn-open span { transform: rotate(180deg); }
.lmn-faq-a {
  color: var(--lmn-text-muted); font-size: 13px; line-height: 1.8;
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0;
}
.lmn-faq-a.lmn-open { max-height: 200px; padding-bottom: 14px; }

/* Internal links */
.lmn-int-links {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px;
}
@media (max-width: 480px) { .lmn-int-links { grid-template-columns: 1fr; } }
.lmn-il {
  background: var(--lmn-white); border: 1px solid var(--lmn-border);
  border-radius: var(--lmn-rs); padding: 12px 14px;
  text-decoration: none; transition: box-shadow .2s, transform .15s; display: block;
}
.lmn-il:hover { box-shadow: var(--lmn-shadow); transform: translateY(-2px); }
.lmn-ilt { color: var(--lmn-purple); font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.lmn-ild { color: var(--lmn-text-muted); font-size: 12px; }

/* Sister line */
.lmn-sister {
  text-align: center; margin-top: 38px; padding-top: 14px;
  border-top: 1px solid var(--lmn-border);
  font-size: 12px; color: var(--lmn-text-muted); line-height: 2;
}
.lmn-sister a { color: var(--lmn-rose); font-weight: 700; text-decoration: none; }
.lmn-sister a:hover { text-decoration: underline; }

/* ==============================================
   MOBILE OPTIMIZATIONS
   Tested breakpoints: 320px, 375px, 414px, 768px
   ============================================== */

/* ── Base mobile fixes ── */
@media (max-width: 768px) {
  .lmn-wrap {
    padding: 0 12px 48px;
  }

  /* Cross banner stacks on mobile */
  .lmn-cb {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 10px 14px;
  }
  .lmn-cb-pill { margin-left: 0; }

  /* Hero */
  .lmn-h1 { font-size: 1.75rem; }
  .lmn-hero-p { font-size: 13px; }

  /* Stats strip - scrollable on tiny screens */
  .lmn-stats {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
    border-radius: 8px;
  }
  .lmn-stat { padding: 8px 14px; flex-shrink: 0; }
  .lmn-sv { font-size: 14px; }

  /* Form card */
  .lmn-card { padding: 20px 14px 18px; }

  /* DOB row — 3 columns still but compact */
  .lmn-dobrow { gap: 6px; }
  .lmn-dob-field select {
    padding: 10px 6px;
    font-size: 13px;
    /* Ensure native select shows properly on iOS */
    -webkit-appearance: menulist;
    appearance: menulist;
    background-color: #fff;
    height: 40px;
  }

  /* Name inputs full width */
  .lmn-nrow { grid-template-columns: 1fr 1fr; gap: 7px; }
  .lmn-field input {
    padding: 10px 10px;
    font-size: 14px;
    height: 42px;
  }

  /* Relationship buttons */
  .lmn-relbtns { grid-template-columns: 1fr 1fr 1fr; gap: 7px; }
  .lmn-rbtn { padding: 9px 4px; font-size: 12px; }

  /* Submit button */
  .lmn-cbtn { padding: 14px; font-size: 14px; }

  /* Banner */
  .lmn-banner { padding: 24px 16px; }
  .lmn-banner-pct { font-size: 3.8rem; }
  .lmn-banner-title { font-size: 15px; }
  .lmn-banner-sub { font-size: 12px; }
  .lmn-banner::before { font-size: 44px; right: 12px; }

  /* Rings — 4 per row on tablets */
  .lmn-rings { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .lmn-ring-box { padding: 10px 5px; }

  /* Section cards */
  .lmn-sec-card { padding: 16px 14px; }
  .lmn-card-h3 { font-size: 0.95rem; }

  /* Feature rows — single column */
  .lmn-feat-row { grid-template-columns: 1fr; gap: 10px; }
  .lmn-feat-card { padding: 16px 14px; }

  /* Number grid — 2 columns */
  .lmn-num-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .lmn-nbox { padding: 12px 8px; }
  .lmn-nbox-n { font-size: 1.9rem; }

  /* Timing year blocks */
  .lmn-year-block { padding: 8px 12px; margin: 4px 4px 0 0; }
  .lmn-year-block .ynum { font-size: 1.2rem; }

  /* CTA */
  .lmn-cta { padding: 18px 14px; }
  .lmn-cta h3 { font-size: 1rem; }
  .lmn-cta a { padding: 11px 20px; font-size: 13px; }

  /* Internal links */
  .lmn-int-links { grid-template-columns: 1fr; }

  /* SEO block */
  .lmn-seo { padding-top: 28px; }
  .lmn-seo-h2 { font-size: 1.25rem; }
  .lmn-table { font-size: 12px; }
  .lmn-table th, .lmn-table td { padding: 7px 9px; }

  /* Promo card */
  .lmn-promo { padding: 13px 14px; gap: 10px; }
  .lmn-promo strong { font-size: 12px; }
}

/* ── Small phones (320px–374px) ── */
@media (max-width: 374px) {
  .lmn-h1 { font-size: 1.55rem; }

  /* DOB — stack to 2 cols on tiny screens */
  .lmn-dobrow { grid-template-columns: 1fr 1fr; }
  /* Year takes full row */
  .lmn-dob-field:last-child {
    grid-column: 1 / -1;
  }

  /* Name inputs full row */
  .lmn-nrow { grid-template-columns: 1fr; }

  /* Rel buttons */
  .lmn-relbtns { grid-template-columns: 1fr; }

  /* Rings — 3 per row */
  .lmn-rings { grid-template-columns: repeat(3, 1fr); }

  /* Number grid — 2 cols still fine */
  .lmn-num-grid { grid-template-columns: repeat(2, 1fr); }

  .lmn-banner-pct { font-size: 3.2rem; }
}

/* ── iOS Safari specific: prevent zoom on select/input focus ── */
@media (max-width: 768px) {
  .lmn-field input,
  .lmn-dob-field select {
    font-size: 16px !important; /* prevents iOS auto-zoom */
  }
  .lmn-rbtn { font-size: 12px; }
}

/* ── Touch targets: min 44px tap area ── */
.lmn-rbtn,
.lmn-cbtn,
.lmn-reset,
.lmn-faq-q {
  min-height: 44px;
}
.lmn-dob-field select,
.lmn-field input {
  min-height: 42px;
}
