/*
Theme Name: MyCustomers
Theme URI: http://localhost:8787
Author: Simon Antolak
Description: Pre-launch site for MyCustomers — Business Unified.
Version: 1.0.0
License: Proprietary
Text Domain: mycustomers
*/

/* =========================================================
   @font-face — Source Sans 3 (Business Unified tagline font)
   ========================================================= */
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/source-sans3-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/source-sans3-600.woff2') format('woff2');
}

/* =========================================================
   @font-face — Raleway (variable, all weights) & PT Sans
   ========================================================= */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/raleway-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/raleway-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/raleway-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/raleway-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('assets/fonts/raleway-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/pt-sans-400.woff2') format('woff2');
}
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/pt-sans-700.woff2') format('woff2');
}

/* =========================================================
   Brand Tokens
   ========================================================= */
:root {
  --mc-black:        #2E2E2E;
  --mc-orange:       #F39A1F;
  --mc-orange-light: #FCEFD8;
  --mc-orange-deep:  #FF8007;
  --mc-amber:        #FFB404;
  --mc-blue:         #2B4871;
  --mc-blue-bright:  #05BADD;
  --mc-grey-50:      #F7F7F7;
  --mc-grey-200:     #E5E5E5;
  --mc-grey-500:     #6B7280;
  --mc-white:        #FFFFFF;
}

/* =========================================================
   Base / Reset
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 17px; scroll-behavior: smooth; }

body {
  font-family: 'Raleway', -apple-system, 'Trebuchet MS', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--mc-black);
  background: var(--mc-white);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--mc-orange); text-decoration: none; }
a:hover { color: var(--mc-orange-deep); }

/* =========================================================
   Background Atmosphere
   ========================================================= */
.bg-wash {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    /* Two large content-area circles visible in the landing mockup */
    radial-gradient(circle 38vw at 14% 58%, rgba(243,154,31,0.08), transparent 70%),
    radial-gradient(circle 36vw at 86% 56%, rgba(243,154,31,0.06), transparent 70%),
    /* Subtle top-edge atmosphere */
    radial-gradient(ellipse 60% 40% at 50% -10%, rgba(243,154,31,0.05), transparent 70%),
    radial-gradient(ellipse 50% 40% at 100% 30%, rgba(5,186,221,0.03), transparent 70%);
}
.bg-dots {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(46,46,46,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 65% 55% at 50% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 65% 55% at 50% 40%, black 30%, transparent 80%);
}

/* =========================================================
   Nav
   ========================================================= */
.mc-nav {
  padding: 42px 48px 0;
  margin: 0;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.mc-nav-logo {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  align-items: center;
}
.mc-nav-logo img {
  height: 80px;
  width: auto;
}
.mc-nav-tagline {
  font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--mc-blue);
}

/* =========================================================
   Main / Page Wrapper
   ========================================================= */
.mc-page {
  position: relative;
  z-index: 1;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* =========================================================
   Hero Section
   ========================================================= */
.mc-hero {
  flex: 1;
  padding: 0px 48px 16px;
  margin-top: -60px;
  text-align: center;
  display: flex;
  align-items: center;
}
.mc-hero-inner {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Badge / Eyebrow */
.mc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--mc-orange-light);
  border: 1px solid rgba(243,154,31,0.25);
  border-radius: 999px;
  padding: 9px 18px;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mc-orange);
  margin-bottom: 16px;
}
.mc-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mc-orange);
  box-shadow: 0 0 10px rgba(243,154,31,0.5);
  flex-shrink: 0;
}

/* Headline H1 */
.mc-headline {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(32px, 3.8vw, 54px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--mc-black);
  max-width: 1040px;
  margin-bottom: 14px;
}
.mc-headline-gradient {
  display: block;
  background: linear-gradient(95deg,
    var(--mc-orange-deep) 0%,
    var(--mc-orange) 35%,
    var(--mc-amber) 75%,
    var(--mc-blue-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-bottom: 0.06em;
}

/* Lede */
.mc-lede {
  max-width: 640px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--mc-grey-500);
  text-align: center;
}
.mc-lede p:first-child { margin-bottom: 8px; }
.mc-lede p:last-child { margin-bottom: 18px; }
.mc-lede strong {
  font-weight: 700;
  color: var(--mc-black);
}

/* CTA intro */
.mc-cta-intro {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--mc-black);
  margin-bottom: 10px;
}

/* Email form wrapper */
.mc-form-wrap {
  width: 100%;
  max-width: 520px;
}
.mc-form {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: var(--mc-white);
  border: 1px solid var(--mc-grey-200);
  border-radius: 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.mc-form:focus-within {
  border-color: var(--mc-orange);
  box-shadow: 0 0 0 3px rgba(243,154,31,0.14);
}
.mc-form input[type="email"] {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--mc-black);
  padding: 14px 16px;
}
.mc-form input[type="email"]::placeholder {
  color: var(--mc-grey-500);
  font-weight: 400;
}

/* Primary button */
.mc-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--mc-orange);
  color: var(--mc-white);
  border: none;
  border-radius: 12px;
  padding: 14px 24px;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.mc-btn-primary:hover {
  background: var(--mc-orange-deep);
  transform: translateY(-1px);
}
.mc-btn-primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

/* Secondary button (defined for future use) */
.mc-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--mc-orange);
  border: 2px solid var(--mc-orange);
  border-radius: 12px;
  padding: 14px 24px;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.mc-btn-secondary:hover {
  background: var(--mc-orange);
  color: var(--mc-white);
  transform: translateY(-1px);
}

/* Form note */
.mc-form-note {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--mc-grey-500);
  text-align: center;
  margin-top: 10px;
}

/* Unsubscribe trigger — inline underlined button */
.mc-unsub-trigger {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: var(--mc-grey-500);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  transition: color 0.2s;
}
.mc-unsub-trigger:hover { color: var(--mc-orange); }

/* Unsubscribe modal card — narrower than the lead capture card */
.mc-unsub-card { max-width: 460px; }

/* Full-width email input inside a modal */
.mc-modal-email-input {
  width: 100%;
  padding: 13px 16px;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 500;
  border: 1.5px solid var(--mc-grey-200);
  border-radius: 12px;
  color: var(--mc-black);
  background: var(--mc-white);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
  margin-top: 14px;
}
.mc-modal-email-input:focus {
  border-color: var(--mc-orange);
  box-shadow: 0 0 0 2px rgba(243,154,31,0.15);
}
.mc-modal-email-input::placeholder { color: var(--mc-grey-500); }

/* Lede inside unsubscribe modal */
.mc-unsub-modal-lede {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--mc-grey-500);
  margin-bottom: 0;
}

/* =========================================================
   Footer
   ========================================================= */
.mc-footer {
  margin-top: 0;
  padding: 14px 48px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid var(--mc-grey-200);
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 400;
  color: var(--mc-grey-500);
  position: relative;
  z-index: 1;
  width: 100%;
}
.mc-footer a {
  color: var(--mc-grey-500);
  text-decoration: none;
  transition: color 0.2s;
}
.mc-footer a:hover { color: var(--mc-orange); }
.mc-footer-sep {
  color: var(--mc-grey-200);
}

/* =========================================================
   Modal Overlay
   ========================================================= */
.mc-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(46,46,46,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.mc-overlay.open { display: flex; }

/* Modal card */
.mc-card {
  background: var(--mc-white);
  border: 1px solid var(--mc-grey-200);
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 24px 64px -16px rgba(46,46,46,0.18);
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

/* Close button */
.mc-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: var(--mc-grey-500);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.mc-modal-close:hover {
  background: var(--mc-grey-50);
  color: var(--mc-black);
}

/* Progress indicator */
.mc-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 28px;
}
.mc-progress-pill {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 700;
  background: var(--mc-grey-50);
  color: var(--mc-grey-500);
  border: 1px solid var(--mc-grey-200);
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.mc-progress-pill.active {
  background: var(--mc-orange);
  color: var(--mc-white);
  border-color: var(--mc-orange);
}
.mc-progress-pill.done {
  background: var(--mc-orange-light);
  color: var(--mc-orange);
  border-color: rgba(243,154,31,0.4);
}
.mc-progress-line {
  width: 36px;
  height: 2px;
  background: var(--mc-grey-200);
  flex-shrink: 0;
  transition: background 0.2s;
}
.mc-progress-line.done { background: var(--mc-orange); }

/* Step label */
.mc-step-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--mc-grey-500);
  text-align: center;
  margin-bottom: 10px;
}

/* Modal question heading */
.mc-modal-q {
  font-family: 'Raleway', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--mc-black);
  text-align: center;
  margin-bottom: 24px;
}

/* Options grids */
.mc-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 0;
}
.mc-options.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.mc-options.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

/* Option buttons */
.mc-option {
  background: var(--mc-white);
  border: 1.5px solid var(--mc-grey-200);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--mc-black);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s, background 0.15s, color 0.15s;
}
.mc-options.grid-3 .mc-option,
.mc-options.grid-5 .mc-option {
  text-align: center;
  padding: 14px 8px;
}
.mc-options.grid-5 .mc-option {
  font-size: 13px;
}
.mc-option:hover {
  border-color: var(--mc-orange);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px -4px rgba(243,154,31,0.18);
}
.mc-option.selected {
  background: var(--mc-orange-light);
  color: var(--mc-orange-deep);
  border-color: var(--mc-orange);
  box-shadow: 0 0 0 2px rgba(243,154,31,0.18);
  transform: none;
}

/* Modal nav row */
.mc-modal-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  gap: 12px;
}
.mc-modal-nav .mc-btn-primary {
  padding: 14px 28px;
}
.mc-back-btn {
  background: none;
  border: none;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--mc-grey-500);
  cursor: pointer;
  padding: 8px 0;
  transition: color 0.2s;
}
.mc-back-btn:hover { color: var(--mc-orange); }
.mc-nav-spacer { flex: 1; }

/* Thank-you step */
.mc-thankyou {
  text-align: center;
  padding: 12px 0;
}
.mc-thankyou-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--mc-orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.mc-thankyou-icon svg {
  color: var(--mc-orange);
}
.mc-thankyou-body {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
  color: var(--mc-grey-500);
  max-width: 420px;
  margin: 0 auto 28px;
}
.mc-thankyou .mc-btn-primary {
  padding: 14px 36px;
}

/* =========================================================
   "Other" custom text input (modal steps 1 & 3)
   ========================================================= */
.mc-other-wrap {
  margin-top: 12px;
}
.mc-other-input {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 500;
  border: 1.5px solid var(--mc-grey-200);
  border-radius: 12px;
  color: var(--mc-black);
  background: var(--mc-white);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
}
.mc-other-input:focus {
  border-color: var(--mc-orange);
  box-shadow: 0 0 0 2px rgba(243,154,31,0.15);
}
.mc-other-input::placeholder { color: var(--mc-grey-500); }

/* =========================================================
   Math CAPTCHA (modal step 3)
   ========================================================= */
.mc-captcha-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 14px 16px;
  background: var(--mc-grey-50);
  border: 1px solid var(--mc-grey-200);
  border-radius: 12px;
}
.mc-captcha-question {
  flex: 1;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--mc-grey-500);
}
.mc-captcha-input {
  width: 76px;
  padding: 8px 10px;
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border: 1.5px solid var(--mc-grey-200);
  border-radius: 8px;
  color: var(--mc-black);
  background: var(--mc-white);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.mc-captcha-input:focus {
  border-color: var(--mc-orange);
  box-shadow: 0 0 0 2px rgba(243,154,31,0.15);
}
.mc-captcha-input.error {
  border-color: #e05555;
  box-shadow: 0 0 0 2px rgba(224,85,85,0.15);
}

/* =========================================================
   Unsubscribe Page
   ========================================================= */
.mc-unsub-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.mc-unsub-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px 40px;
  position: relative;
  z-index: 1;
}

/* Card */
.mc-unsub-card {
  width: 100%;
  max-width: 500px;
  background: var(--mc-white);
  border: 1px solid var(--mc-grey-200);
  border-radius: 16px;
  padding: 48px 44px;
  box-shadow: 0 4px 24px -12px rgba(46,46,46,0.06);
  text-align: center;
}

/* Eyebrow badge — small variant */
.mc-badge-sm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--mc-orange-light);
  border: 1px solid rgba(243,154,31,0.25);
  border-radius: 999px;
  padding: 7px 14px;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--mc-orange);
  margin-bottom: 20px;
}

/* Unsubscribe heading */
.mc-unsub-h1 {
  font-family: 'Raleway', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--mc-black);
  margin-bottom: 14px;
}

/* Unsubscribe lede */
.mc-unsub-lede {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--mc-grey-500);
  margin-bottom: 28px;
}

/* Stacked form */
.mc-unsub-form { text-align: left; }
.mc-unsub-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--mc-black);
  margin-bottom: 8px;
}
.mc-unsub-input {
  width: 100%;
  border: 1.5px solid var(--mc-grey-200);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--mc-black);
  background: var(--mc-white);
  outline: none;
  margin-bottom: 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.mc-unsub-input::placeholder {
  color: var(--mc-grey-500);
  font-weight: 400;
}
.mc-unsub-input:focus {
  border-color: var(--mc-orange);
  box-shadow: 0 0 0 3px rgba(243,154,31,0.14);
}
.mc-unsub-form .mc-btn-primary {
  width: 100%;
  justify-content: center;
  padding: 15px 24px;
}

/* Helper link */
.mc-help-link {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 400;
  color: var(--mc-grey-500);
  text-align: center;
}
.mc-help-link a {
  color: var(--mc-orange);
  font-weight: 600;
}
.mc-help-link a:hover { color: var(--mc-orange-deep); }

/* Confirmation state */
.mc-confirmation { display: none; }
.mc-unsub-card.submitted .mc-unsub-form,
.mc-unsub-card.submitted .mc-help-link { display: none; }
.mc-unsub-card.submitted .mc-confirmation { display: block; }

.mc-check-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--mc-orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.mc-check-icon svg { color: var(--mc-orange); }
.mc-confirmation h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--mc-black);
  margin-bottom: 14px;
}
.mc-confirmation p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--mc-grey-500);
}
.mc-confirmation strong {
  font-weight: 700;
  color: var(--mc-black);
}
.mc-confirmation p + p { margin-top: 10px; }

/* Logo below unsubscribe card */
.mc-unsub-logo {
  padding: 32px 24px 24px;
  text-align: center;
}
.mc-unsub-logo img {
  height: 32px;
  width: auto;
  opacity: 0.9;
  display: inline-block;
}

/* Unsubscribe footer */
.mc-unsub-footer {
  padding: 20px 24px 32px;
  border-top: 1px solid var(--mc-grey-200);
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  color: var(--mc-grey-500);
  position: relative;
  z-index: 1;
}
.mc-unsub-footer a {
  color: var(--mc-grey-500);
  text-decoration: none;
}
.mc-unsub-footer a:hover { color: var(--mc-orange); }

/* =========================================================
   Responsive — ≤900px
   ========================================================= */
@media (max-width: 900px) {
  .mc-nav { padding: 20px 24px; }
  .mc-hero { padding: 48px 24px 40px; }
  .mc-footer { padding: 24px 24px; }
}

/* =========================================================
   Responsive — ≤540px
   ========================================================= */
@media (max-width: 540px) {
  .mc-nav-logo img { height: 56px; }

  .mc-form {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .mc-form .mc-btn-primary {
    width: 100%;
    justify-content: center;
  }

  .mc-modal-q { font-size: 20px; }

  .mc-options { grid-template-columns: 1fr; }
  .mc-options.grid-3 { grid-template-columns: repeat(2, 1fr); }
  .mc-options.grid-5 { grid-template-columns: repeat(2, 1fr); }

  .mc-card { padding: 28px 22px; }

  .mc-unsub-card { padding: 36px 28px; }
  .mc-unsub-h1 { font-size: 28px; }
}
