/* ─── CSS VARIABLES ───────────────────────────────────────────────── */
:root {
  --primary: #2563eb;               /* Blue primary */
  --primary-dark: #1d4ed8;          /* Blue dark */
  --primary-light: #60a5fa;         /* Blue light */
  --white: #ffffff;
  --bg: #f5f7fb;                    /* Light background */
  --bg-alt: #ffffff;                /* Alternative background */
  --bg-soft: #eef4ff;
  --text: #0f172a;                  /* Dark text */
  --text-muted: rgba(15, 23, 42, 0.78);
  --text-lighter: rgba(15, 23, 42, 0.62);
  --border-light: rgba(148, 163, 184, 0.28);
  --border-lighter: rgba(148, 163, 184, 0.18);
  --primary-15: rgba(59, 130, 246, 0.15);
  --primary-12: rgba(59, 130, 246, 0.12);
  --primary-08: rgba(59, 130, 246, 0.08);
  --primary-04: rgba(59, 130, 246, 0.04);
  --primary-2: rgba(59, 130, 246, 0.2);
  --primary-25: rgba(59, 130, 246, 0.25);
  --primary-35: rgba(59, 130, 246, 0.35);
  --primary-3: rgba(59, 130, 246, 0.3);
  --primary-4: rgba(59, 130, 246, 0.4);
  --primary-5: rgba(59, 130, 246, 0.5);
  --primary-9: rgba(59, 130, 246, 0.9);
}

/* ─── RESET & BASE ─────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(96, 165, 250, 0.16), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, var(--bg) 38%, #f7f8fc 100%);
  font-family: 'DM Sans', 'Segoe UI', sans-serif;
  color: var(--text);
  padding: 0 0 80px 0;
  font-size: 16px;
  line-height: 1.55;
}

/* ─── HERO ──────────────────────────────────────────────────────────── */
.hero-bg {
  padding: 56px 20px 36px;
  text-align: center;
}

.header-inner {
  max-width: 760px;
  margin: 0 auto;
}

.header-badge {
  width: fit-content;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center;
}

.header-logo svg {
  filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.15));
  animation: float 3s ease-in-out infinite;
}

.header-logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.header-badge-text {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
  font-weight: 700;
}

.hero-title {
  font-size: clamp(38px, 6vw, 60px);
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 0.98;
  margin: 0 0 12px 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  color: var(--text-lighter);
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

/* ─── PULSE DOT ─────────────────────────────────────────────────────── */
.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

/* ─── MAIN CONTAINER ────────────────────────────────────────────────── */
.main-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 18px;
}

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

@media (min-width: 1000px) {
  .main-container {
    max-width: 1280px;
  }

  .grid-layout {
    grid-template-columns: minmax(360px, 0.95fr) minmax(440px, 1.05fr);
    grid-template-areas:
      "settings results"
      "footer footer";
    align-items: start;
    gap: 28px;
  }

  #settings-input-container {
    grid-area: settings;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  #settings-card {
    margin: 0;
  }

  #input-card {
    margin-top: 12px;
  }

  #results-container {
    grid-area: results;
  }

  .seo-wrapper {
    grid-area: footer;
  }
}

/* ─── CARD ──────────────────────────────────────────────────────────── */
.card {
  background: var(--bg-alt);
  border: 1px solid var(--border-lighter);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(10px);
  padding: 26px;
  margin-top: 8px;
}

.card-gold {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(96, 165, 250, 0.06));
  border: 1px solid rgba(37, 99, 235, 0.16);
}

/* ─── SECTION LABEL ─────────────────────────────────────────────────── */
.section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--text-lighter);
  margin-bottom: 12px;
}

.settings-section {
  margin-bottom: 24px;
}

/* ─── TAB BUTTONS ───────────────────────────────────────────────────── */
.tab-group {
  display: flex;
  gap: 8px;
}

.tab-btn {
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid var(--border-lighter);
  transition: all 0.2s;
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.24);
}

.tab-btn:not(.active) {
  background: var(--bg-alt);
  color: var(--text-muted);
}

.tab-btn:not(.active):hover {
  background: var(--border-lighter);
  color: var(--text);
}

/* ─── SEGMENT BUTTONS ───────────────────────────────────────────────── */
.seg-bg {
  background: var(--bg-soft);
  padding: 5px;
  border-radius: 14px;
}

.seg-group {
  display: flex;
  gap: 6px;
}

.seg-btn {
  flex: 1;
  padding: 12px 14px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s;
  border-radius: 11px;
  font-family: 'DM Sans', sans-serif;
}

.seg-btn.active {
  background: #ffffff;
  color: var(--primary-dark);
  border: 1px solid rgba(37, 99, 235, 0.2);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.12);
}

.seg-btn:not(.active) {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid transparent;
}

.seg-btn:not(.active):hover {
  color: var(--text-muted);
  border: 1px solid var(--border-lighter);
}

/* ─── EXEMPTIONS ────────────────────────────────────────────────────── */
.exemptions-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

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

.toggle-btn {
  background: var(--bg-alt);
  border: 1px solid var(--border-lighter);
  border-radius: 10px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 12px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
}

.toggle-btn:hover {
  background: var(--border-lighter);
  color: var(--text-muted);
}

.exemptions-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  animation: fadeInUp 0.4s ease;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.15s;
  border: 1px solid transparent;
}

.check-item:hover {
  background: var(--border-lighter);
}

.check-item.checked {
  background: var(--primary-08);
  border-color: var(--primary-2);
}

.checkbox {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1.5px solid var(--border-light);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all 0.15s;
}

.checkbox.checked {
  background: var(--primary);
  border-color: var(--primary);
}

.check-icon {
  display: none;
}

.checkbox.checked .check-icon {
  display: block;
}

.check-text {
  flex: 1;
}

.check-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  transition: color 0.15s;
}

.check-title.checked {
  color: var(--primary);
}

.check-desc {
  font-size: 13px;
  color: var(--text-lighter);
  margin-top: 4px;
  line-height: 1.5;
}

/* ─── UNION ─────────────────────────────────────────────────────────── */
.union-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.union-input {
  background: var(--bg-alt);
  border: 1.5px solid var(--border-lighter);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--text);
  font-family: 'DM Mono', monospace;
  font-size: 15px;
  width: 92px;
  outline: none;
  text-align: center;
  transition: border-color 0.2s;
}

.union-input:focus {
  border-color: var(--primary-4);
}

.union-label {
  color: var(--text-muted);
  font-size: 15px;
}

/* ─── CALC INPUT ────────────────────────────────────────────────────── */
.input-with-icon {
  position: relative;
  width: 100%;
}

.calc-input {
  width: 100%;
  background: var(--bg-alt);
  border: 1.5px solid var(--border-lighter);
  border-radius: 16px;
  padding: 18px 52px 18px 20px;
  font-size: 30px;
  font-family: 'DM Mono', monospace;
  font-weight: 500;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  letter-spacing: -0.5px;
}

.calc-input:focus {
  border-color: var(--primary-5);
}

.calc-input::placeholder {
  color: rgba(15, 23, 42, 0.32);
  font-size: 24px;
}

.input-clear-icon {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

.input-clear-icon:hover {
  color: var(--text);
}

/* ─── CALC BUTTONS ──────────────────────────────────────────────────── */
.input-btn-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 12px;
}

.calc-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 20px var(--primary-25);
  font-family: 'DM Sans', sans-serif;
}

.calc-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px var(--primary-35);
}

.calc-btn:active {
  transform: translateY(0);
}

.clear-btn {
  padding: 12px 20px;
  background: var(--bg-alt);
  color: var(--text-lighter);
  font-weight: 500;
  font-size: 14px;
  border: 1px solid var(--border-lighter);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}

.clear-btn:hover {
  background: var(--border-lighter);
  color: var(--text-muted);
}

/* ─── RESULTS ───────────────────────────────────────────────────────── */
.result-main {
  padding: 18px 26px 26px 26px;
  margin-bottom: 0;
}

.result-top-grid {
  display: grid;
  gap: 20px;
}

/* Desktop and tablet layout */
@media (min-width: 768px) {
  .result-top-grid {
    grid-template:
      'net net'
      'gross supergross';
  }

  .item1 { grid-area: net; }
  .item2 { grid-area: gross; }
  .item3 { grid-area: supergross; }
}


.result-top-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
  margin-top: 16px;
  color: var(--text-lighter);
}

.big-result {
  font-family: 'DM Mono', monospace;
  font-size: clamp(42px, 4vw, 54px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1;
}

.big-result.gold {
  color: var(--primary);
}

/* ─── PROGRESS BAR ──────────────────────────────────────────────────── */
.progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-lighter);
  margin-bottom: 8px;
}

.progress-track {
  height: 6px;
  background: var(--border-lighter);
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), #ff6b6b);
  border-radius: 10px;
  transition: width 0.6s ease;
}

/* ─── RESULT ROWS ───────────────────────────────────────────────────── */
.result-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-lighter);
  gap: 12px;
}

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

.result-label {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.5;
}

.result-value {
  font-family: 'DM Mono', monospace;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.result-value.negative { color: #ff6b6b; }
.result-value.positive { color: #4ade80; }
.result-value.gold { color: var(--primary); }

/* ─── DIVIDER BAR ───────────────────────────────────────────────────── */
.divider-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0;
}

.divider-bar::before,
.divider-bar::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-lighter);
}

.divider-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-lighter);
  letter-spacing: 1px;
  white-space: nowrap;
}

/* ─── NET SUMMARY ───────────────────────────────────────────────────── */
.net-summary {
  margin-top: 16px;
  /* padding: 14px 16px;
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.15);
  border-radius: 10px; */
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.net-summary-label {
  font-size: 15px;
  color: #4ade80;
  font-weight: 700;
}

.net-summary-value {
  font-family: 'DM Mono', monospace;
  font-size: 22px;
  font-weight: 700;
  color: #4ade80;
}

/* ─── TAGS ──────────────────────────────────────────────────────────── */
.tags-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.tag {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.tag-gold {
  background: var(--primary-15);
  color: var(--primary);
  border: 1px solid var(--primary-25);
}

.tag-slate {
  background: rgba(148,163,184,0.1);
  color: #94a3b8;
}

/* ─── INFO BADGE ────────────────────────────────────────────────────── */
.info-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  background: var(--primary-15);
  color: var(--primary);
  border: 1px solid var(--primary-25);
}

/* ─── INFO FOOTER ───────────────────────────────────────────────────── */
.info-footer {
  padding: 20px 22px;
  border-radius: 18px;
  text-align: center;
  background: var(--bg-alt);
  border: 1px solid var(--border-lighter);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

.seo-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.seo-section {
  padding: 32px 28px;
}

.seo-kicker {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--primary-08);
  color: var(--primary-dark);
  border: 1px solid var(--primary-15);
}

.seo-title {
  margin-top: 16px;
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--text);
}

.seo-title-small {
  font-size: clamp(22px, 3vw, 28px);
}

.seo-lead {
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.85;
  color: var(--text-muted);
}

.seo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 20px;
}

.seo-block {
  padding: 22px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.04), rgba(255, 255, 255, 0.92));
  border: 1px solid var(--border-lighter);
}

.seo-block h3,
.seo-faq-item h3 {
  font-size: 20px;
  line-height: 1.35;
  color: var(--text);
}

.seo-block p,
.seo-faq-item p {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-muted);
}

.seo-faq {
  margin-top: 28px;
}

.seo-faq-item {
  margin-top: 16px;
  padding: 20px 22px;
  border-radius: 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border-lighter);
}

@media (min-width: 900px) {
  .seo-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ─── ANIMATIONS ────────────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeInUp 0.4s ease;
}

/* ─── SCROLLBAR ─────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 3px; }

/* ─── RESULT VALUES WITH CURRENCY ─────────────────────────────── */
.result-value-with-currency {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.currency-row {
  display: flex;
  flex-direction: row;
  gap: 12px;
  font-size: 12px;
  white-space: nowrap;
}

.currency-equiv {
  color: var(--text-lighter);
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  opacity: 0.92;
}

/* ─── CURRENCY ROW TOP (FOR BIG RESULTS) ────────────────────────── */
.currency-row-top {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: start;
}

.currency-equiv-top {
  color: rgba(37, 99, 235, 0.72);
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  font-weight: 700;
}
.exchange-rates-display {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.06), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 16px;
  font-size: 14px;
}

@media (min-width: 1000px) {
  .hero-subtitle {
    font-size: 20px;
  }

  .card {
    padding: 30px;
  }

  .section-label {
    font-size: 13px;
  }

  .result-label,
  .union-label,
  .seo-block p,
  .seo-faq-item p {
    font-size: 17px;
  }

  .check-desc,
  .info-footer,
  .seo-lead {
    font-size: 17px;
  }

  .result-value {
    font-size: 16px;
  }
}

.exchange-rates-display-header {
  display: flex;
  justify-content: center;
  margin: 16px 0 24px;
}

.rates-header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.rates-header-date {
  font-size: 12px;
  color: var(--text-lighter);
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

.rates-header-rates {
  display: flex;
  gap: 24px;
}

.rate-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.rate-label {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 12px;
}

.rate-value {
  color: var(--primary);
  font-family: 'DM Mono', monospace;
  font-weight: 600;
  font-size: 14px;
}

/* ─── EXCHANGE RATES CARD ───────────────────────────────────────────── */
.exchange-rates-display-card {
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(59, 130, 246, 0.04));
  border: 1px solid var(--primary-08);
  border-radius: 10px;
  margin-top: 8px;
  display: none;
}

.rates-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--primary-08);
}

.rates-card-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rates-card-date {
  font-size: 11px;
  color: var(--text-lighter);
  text-transform: capitalize;
}

.rates-card-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.rate-card-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 8px;
  border: 1px solid var(--primary-08);
}

.rate-card-item .rate-card-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rate-card-item .rate-card-value {
  font-family: 'DM Mono', monospace;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}



.currency-value {
  color: rgba(218, 165, 32, 0.8);
  font-family: 'DM Mono', monospace;
  font-weight: 600;
  font-size: 14px;
}

.landing-shell {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 18px 72px;
}

.landing-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 8px auto 28px;
}

.landing-nav a {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border-lighter);
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.landing-nav a:hover {
  color: var(--primary-dark);
  border-color: rgba(37, 99, 235, 0.2);
}

.landing-hero {
  text-align: left;
  margin-bottom: 14px;
}

.landing-hero .hero-title {
  margin-bottom: 14px;
}

.landing-hero .hero-subtitle {
  max-width: 760px;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.landing-button,
.landing-button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.landing-button {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.18);
}

.landing-button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-lighter);
}

.landing-button:hover,
.landing-button-secondary:hover {
  transform: translateY(-1px);
}

.landing-meta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 22px;
}

.landing-meta-card {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-lighter);
}

.landing-meta-card h3 {
  font-size: 18px;
  color: var(--text);
}

.landing-meta-card p,
.landing-meta-card li {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
}

.landing-meta-card ul {
  padding-left: 18px;
}

@media (min-width: 900px) {
  .landing-meta-grid {
    grid-template-columns: 1fr 1fr;
  }
}
