/* ============================================================
   KickOffMail — Custom CSS
   Supplements bootstrap.css
   ============================================================ */

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
  --pitch-dark:  #0f3b2b;
  --pitch-mid:   #1f6b4a;
  --pitch-line:  rgba(255, 255, 255, 0.12);
  --panel:       #ffffff;
  --panel-soft:  #f8fbff;
  --ink:         #152236;
  --accent:      #f6d84c;
  --accent-tint: rgba(246, 216, 76, 0.12);
  --accent-dark: #d79200;
  --danger:      #dc3545;
  --radius:      10px;
  --shadow-sm:   0 2px 8px rgba(15, 43, 43, 0.08);
  --shadow-md:   0 6px 20px rgba(15, 43, 43, 0.12);
  --shadow-lg:   0 10px 28px rgba(15, 59, 43, 0.14);
}

/* ── Base ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Raleway', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 400px at 70% -5%, rgba(246, 216, 76, 0.14), transparent 60%),
    linear-gradient(180deg, #f7fbf8 0%, #eef6f1 100%);
  padding-top: 72px;
  min-height: 100vh;
}

a { color: var(--pitch-mid); }
a:hover { color: var(--pitch-dark); text-decoration: none; }

.orange { color: var(--accent-dark) !important; text-shadow: 0 1px 0 rgba(255,255,255,0.45); }

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar-custom {
  background: linear-gradient(90deg, var(--pitch-dark), #133f2f);
  padding-top:    0.75rem;
  padding-bottom: 0.75rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.navbar-custom .navbar-brand {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff !important;
  letter-spacing: -0.02em;
}

.navbar-custom .navbar-brand .brand-accent {
  color: var(--accent);
}

.navbar-custom .nav-link {
  padding-top:    0.7rem;
  padding-bottom: 0.7rem;
  color: rgba(255, 255, 255, 0.90) !important;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.15s;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link:focus { color: var(--accent) !important; }

.navbar-custom .nav-link.active { color: #ffffff !important; }

.navbar-custom .navbar-toggler {
  border: 1px solid rgba(255,255,255,0.3);
}

.navbar-custom .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-primary,
.btn-solid-reg,
button[type="submit"].btn-gold {
  background: var(--accent);
  border: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  white-space: nowrap;
}

.btn-primary:hover,
.btn-solid-reg:hover {
  background: #f0cc2a;
  color: var(--ink);
  transform: translateY(-1px);
}

.btn-primary:focus,
.btn-solid-reg:focus { outline: none; box-shadow: 0 0 0 3px rgba(246,216,76,0.4); }

.btn-secondary-outline {
  background: transparent;
  border: 2px solid var(--pitch-mid);
  color: var(--pitch-mid);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.55rem 1.3rem;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.btn-secondary-outline:hover {
  background: var(--pitch-mid);
  color: #ffffff;
}

.btn-danger {
  background: var(--danger);
  border: none;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-danger:hover { background: #c82333; color: #ffffff; }

/* ── Hero Header ─────────────────────────────────────────────── */
.header {
  background-color: var(--pitch-dark);
  background-image:
    linear-gradient(var(--pitch-line), var(--pitch-line)),
    repeating-linear-gradient(
      90deg,
      rgba(24, 90, 61, 0.06)  0,
      rgba(24, 90, 61, 0.06)  32px,
      rgba(18, 72, 49, 0.11) 32px,
      rgba(18, 72, 49, 0.11) 64px
    );
  color: #ffffff;
}

.header .header-content { padding-top: 4rem; padding-bottom: 3rem; }

.header h1 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.header .p-large { font-size: 1.05rem; opacity: 0.9; margin-bottom: 1.25rem; }

.header .image-container img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-width: 100%;
}

/* ── Soccer Tags ─────────────────────────────────────────────── */
.soccer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.75rem 0 1.25rem 0;
}

.soccer-tag {
  font-size: 0.78rem;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  padding: 0.22rem 0.65rem;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
}

/* ── Signup Form ─────────────────────────────────────────────── */
.signup-form-wrap { margin-top: 1rem; }

.signup-form-wrap label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: rgba(255,255,255,0.95);
}

.input-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.input-row input[type="email"] {
  flex: 1 1 200px;
  padding: 0.6rem 1rem;
  border: none;
  border-radius: 50px;
  font-size: 0.95rem;
  outline: none;
}

.input-row input[type="email"]:focus {
  box-shadow: 0 0 0 3px rgba(246,216,76,0.5);
}

.update-link {
  display: inline-block;
  margin-top: 0.75rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  text-decoration: underline;
}

.update-link:hover { color: var(--accent); }

/* ── Feedback Messages ───────────────────────────────────────── */
.feedback-msg {
  margin-top: 0.65rem;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  display: none;
}

.feedback-msg.show { display: block; }
.feedback-msg.success { background: rgba(31,107,74,0.15); color: #145c36; border: 1px solid rgba(31,107,74,0.3); }
.feedback-msg.error   { background: rgba(220, 53, 69, 0.1); color: #7d1a22; border: 1px solid rgba(220,53,69,0.3); }
.feedback-msg.info    { background: rgba(0,123,255,0.08); color: #0056b3; border: 1px solid rgba(0,123,255,0.2); }
.feedback-msg.success a { color: #0a3d20; font-weight: 600; text-decoration: underline; }
.feedback-msg.error   a { color: #5a1018; font-weight: 600; text-decoration: underline; }
.feedback-msg.info    a { color: #003d80; font-weight: 600; text-decoration: underline; }

/* Inside the dark hero header, flip to light text */
.header .feedback-msg.success { background: rgba(255,255,255,0.15); color: #d4f5e2; border-color: rgba(255,255,255,0.3); }
.header .feedback-msg.error   { background: rgba(220,53,69,0.25);   color: #ffc8cc;  border-color: rgba(220,53,69,0.5); }
.header .feedback-msg.info    { background: rgba(255,255,255,0.1);  color: #cde8ff;  border-color: rgba(255,255,255,0.2); }
.header .feedback-msg.success a { color: #fff; font-weight: 600; text-decoration: underline; }
.header .feedback-msg.error   a { color: #fff; font-weight: 600; text-decoration: underline; }
.header .feedback-msg.info    a { color: #fff; font-weight: 600; text-decoration: underline; }

/* ── How It Works ────────────────────────────────────────────── */
.how-it-works { background: var(--panel); padding: 4rem 0; }

.how-it-works .step-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.75rem;
}
.how-it-works .step-icon-fa {
  color: #0f3b2b;
  font-size: 2.5rem;
}

.how-it-works .step-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.how-it-works .step-card h4 { font-weight: 700; margin-bottom: 0.5rem; color: var(--ink); }
.how-it-works .step-card p  { color: #5a6a6e; font-size: 0.95rem; }

.step-connector {
  font-size: 1.5rem;
  color: #ccc;
  align-self: center;
  padding-top: 1rem;
}

/* ── Coverage Section ────────────────────────────────────────── */
.coverage-section { padding: 3.5rem 0; }

.coverage-wrap {
  margin-top: 1.5rem;
  border: 1px solid #dbe6ee;
  border-radius: 12px;
  background: var(--panel);
  padding: 1.25rem 1.25rem 1.5rem;
  position: relative;
  box-shadow: var(--shadow-md);
}

.coverage-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 1rem;
}

.coverage-title i { margin-right: 0.4rem; color: var(--pitch-mid); }

.coverage-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(380px, 1fr);
  gap: 1rem;
  align-items: start;
}

.coverage-card {
  border: 1px solid #dde8f2;
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel-soft) 100%);
  min-width: 0;
  color: var(--ink);
}

.coverage-card h4 { margin: 0 0 0.6rem; font-size: 1rem; color: #133545; font-weight: 700; }

.coverage-list { margin: 0; padding-left: 0; list-style: none; }
.coverage-list li { margin-bottom: 0.35rem; }

.item-line { display: flex; align-items: center; gap: 0.45rem; font-size: 0.9rem; }
.item-line .flag-icon { flex-shrink: 0; }

.teams-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  column-gap: 0.9rem;
  row-gap: 0.2rem;
}

.national-list {
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid #e7edf4;
}

.national-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.7rem;
  margin-top: 0.35rem;
}

.national-flags span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.88rem;
}

/* ── Example Email Section ───────────────────────────────────── */
.example-email-section { padding: 4rem 0; background: var(--panel-soft); }

.email-preview-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.9rem;
}

.email-preview-header {
  background: linear-gradient(135deg, var(--pitch-dark), var(--pitch-mid));
  color: #ffffff;
  padding: 1.2rem 1.5rem;
  text-align: center;
}

.email-preview-header h4 { margin: 0; font-size: 1.15rem; }
.email-preview-header small { opacity: 0.75; font-size: 0.8rem; }

.email-preview-body { background: #ffffff; padding: 1.25rem 1.5rem; }

.email-comp-heading {
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffffff;
  background: var(--pitch-mid);
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  margin: 0.75rem 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.email-match-row {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.2rem;
  border-bottom: 1px solid #f0f4f8;
  gap: 0.75rem;
}

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

.match-time {
  color: var(--pitch-mid);
  font-weight: 700;
  font-size: 0.82rem;
  min-width: 75px;
}

.match-teams { color: var(--ink); font-size: 0.92rem; }

.email-footer-note {
  font-size: 0.75rem;
  color: #8a9ab5;
  text-align: center;
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 1px solid #f0f4f8;
}

/* ── Flag & Logo icons ───────────────────────────────────────── */
.flag-icon {
  width: 16px;
  height: 12px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
  object-fit: cover;
  flex: 0 0 auto;
}

.team-logo {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  border: 1px solid #d5e2ed;
  padding: 1px;
  flex: 0 0 auto;
}

/* ── Wizard ──────────────────────────────────────────────────── */
.wizard-page { padding: 2.5rem 0 4rem; }

.wizard-container {
  background: var(--panel);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.wizard-header { margin-bottom: 1.75rem; }
.wizard-header h2 { font-weight: 700; color: var(--pitch-dark); margin-bottom: 0.25rem; }
.wizard-header p  { color: #6c757d; margin: 0; font-size: 0.95rem; }

/* Progress bar */
.wizard-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0 0 2rem;
}

.step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #dce5ef;
  background: #f4f7fb;
  color: #8a9ab5;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  position: relative;
  z-index: 1;
}

.step-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
  box-shadow: 0 0 0 3px rgba(246,216,76,0.35);
}

.step-dot.done {
  background: var(--pitch-mid);
  border-color: var(--pitch-mid);
  color: #ffffff;
}

.step-connector-line {
  flex: 1;
  height: 2px;
  background: #dce5ef;
  margin: 0;
  position: relative;
  z-index: 0;
}

.step-dot.done + .step-connector-line {
  background: var(--pitch-mid);
}

.step-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.step-label-item {
  font-size: 0.72rem;
  color: #8a9ab5;
  text-align: center;
  flex: 1;
}

/* Content area */
.step-description {
  color: #5a6a72;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

/* Select cards */
.select-card {
  background: var(--panel);
  border: 1.5px solid #dce5ef;
  border-radius: var(--radius);
  padding: 0.65rem 0.5rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
  text-align: center;
  min-height: 80px;
  justify-content: center;
  user-select: none;
}

.select-card:hover {
  border-color: #a8c5b4;
  box-shadow: var(--shadow-sm);
}

.select-card.selected {
  border-color: var(--accent);
  background: var(--accent-tint);
  box-shadow: 0 0 0 1px var(--accent);
}

.select-card .card-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: contain;
  background: #f4f7fb;
  border: 1px solid #dce5ef;
  padding: 2px;
}

.select-card .card-name {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}

.select-card.selected .card-name { color: var(--pitch-dark); }

/* Nation cards */
.nation-card {
  min-height: 60px;
  padding: 0.5rem;
}

.nation-card .flag-icon {
  width: 20px;
  height: 15px;
  border-radius: 2px;
}

/* League tabs */
.league-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.tab-btn {
  background: #f0f4f8;
  border: 1.5px solid #dce5ef;
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #5a6a72;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.tab-btn:hover { background: #e0eaee; border-color: #b0c8d4; }

.tab-btn.active {
  background: var(--pitch-dark);
  border-color: var(--pitch-dark);
  color: #ffffff;
}

/* Teams grid */
.teams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 0.65rem;
}

/* Competitions */
.comp-group { margin-bottom: 1.5rem; }

.region-heading {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--pitch-mid);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.comp-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.45rem;
}

.competition-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.75rem;
  border: 1.5px solid #dce5ef;
  border-radius: var(--radius);
  background: var(--panel);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  font-size: 0.88rem;
}

.competition-item:hover { border-color: #a8c5b4; }

.competition-item.selected {
  border-color: var(--accent);
  background: var(--accent-tint);
}

.comp-check {
  width: 18px;
  height: 18px;
  border: 2px solid #c0d0dc;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--pitch-mid);
  flex-shrink: 0;
  transition: border-color 0.15s;
}

.competition-item.selected .comp-check {
  border-color: var(--pitch-mid);
  background: var(--pitch-mid);
  color: #ffffff;
}

.comp-name { font-weight: 600; color: var(--ink); }

/* Nation search */
.search-wrap {
  margin-bottom: 1.25rem;
}

.search-wrap input {
  max-width: 340px;
  border-radius: 50px;
  border: 1.5px solid #dce5ef;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.15s;
}

.search-wrap input:focus { border-color: var(--pitch-mid); box-shadow: 0 0 0 3px rgba(31,107,74,0.12); }

/* Summary box (step 5) */
/* Step 5: Fixtures confirmation box (always on, green) */
.confirm-fixtures-box {
  background: rgba(44, 110, 53, 0.06);
  border: 1.5px solid rgba(44, 110, 53, 0.3);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}

.confirm-box-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.confirm-box-text { flex: 1; }

.confirm-box-title {
  font-weight: 700;
  font-size: 1rem;
  color: #1e4d24;
  display: block;
}

.confirm-box-title i { color: #388e3c; margin-right: 0.4rem; }

.confirm-box-sub {
  font-size: 0.875rem;
  color: #3a6b3f;
  display: block;
  margin-top: 0.3rem;
}

.toggle-always-on {
  background: var(--pitch-mid) !important;
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.toggle-always-on::after {
  transform: translateX(22px);
}

.no-selections-warning {
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: #7d5a00;
  background: rgba(255, 193, 7, 0.12);
  border: 1px solid rgba(255, 193, 7, 0.35);
  border-radius: calc(var(--radius) - 2px);
  padding: 0.55rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

/* Step 5: Results opt-in box (amber, optional) */
.confirm-results-box {
  border: 1.5px solid #e0c840;
  background: rgba(255, 220, 0, 0.04);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}

.optional-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #7a6200;
  background: rgba(255, 214, 0, 0.25);
  border: 1px solid #e0c840;
  border-radius: 4px;
  padding: 0.1rem 0.4rem;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.toggle-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.toggle-label { cursor: pointer; }
.toggle-title { font-weight: 700; font-size: 1rem; display: block; color: var(--ink); }
.toggle-sub   { font-size: 0.82rem; color: #6c757d; display: block; margin-top: 0.15rem; }

/* Toggle switch */
.toggle-switch-wrap { flex-shrink: 0; }

.toggle-checkbox { display: none; }

.toggle-switch {
  display: block;
  width: 48px;
  height: 26px;
  background: #cdd6df;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  background: #ffffff;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.toggle-checkbox:checked + .toggle-switch {
  background: var(--pitch-mid);
}

.toggle-checkbox:checked + .toggle-switch::after {
  transform: translateX(22px);
}

.spoiler-warning {
  margin-top: 0.9rem;
  background: rgba(220, 53, 69, 0.07);
  border: 1px solid rgba(220,53,69,0.2);
  border-radius: var(--radius);
  padding: 0.65rem 0.9rem;
  font-size: 0.85rem;
  color: #7d1a22;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.spoiler-warning i { color: #c0392b; margin-top: 0.1rem; flex-shrink: 0; }

/* Wizard nav buttons */
.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid #edf1f5;
}

/* Step heading */
#wizard-step-heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--pitch-dark);
  margin-bottom: 1rem;
}

/* Error block */
#wizard-error {
  display: none;
  margin-bottom: 1rem;
}

/* Loading spinner area */
.wizard-loading {
  text-align: center;
  padding: 3rem 1rem;
  color: #6c757d;
}

/* Success screen */
.success-screen .success-icon {
  font-size: 4rem;
  display: block;
}

/* ── Standalone pages (verify-pending, preferences, optout, expired) ── */
.page-card-wrap {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
}

.page-card {
  background: var(--panel);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 2.5rem 2rem;
  max-width: 520px;
  width: 100%;
  text-align: center;
}

.page-card .page-icon { font-size: 3.5rem; display: block; margin-bottom: 1rem; }
.page-card h2 { font-weight: 700; color: var(--pitch-dark); margin-bottom: 0.75rem; }
.page-card p  { color: #5a6a72; font-size: 0.96rem; }

.page-card .form-group { text-align: left; margin-top: 1.5rem; }
.page-card .form-group label { font-weight: 600; margin-bottom: 0.3rem; display: block; font-size: 0.9rem; color: var(--ink); }
.page-card .form-group input { width: 100%; padding: 0.6rem 1rem; border: 1.5px solid #dce5ef; border-radius: 50px; font-size: 0.95rem; outline: none; }
.page-card .form-group input:focus { border-color: var(--pitch-mid); box-shadow: 0 0 0 3px rgba(31,107,74,0.12); }
.page-card .btn-block { width: 100%; margin-top: 0.75rem; border-radius: 50px; padding: 0.65rem; font-size: 0.95rem; font-weight: 700; }
.page-card .feedback-msg { text-align: left; }

/* ── Contact section ─────────────────────────────────────────── */
.form-2 { padding: 3.5rem 0; background: var(--panel); }
.form-2 h2 { font-weight: 700; color: var(--pitch-dark); margin-bottom: 1.25rem; }
.form-2 .address { color: #5a6a72; margin-bottom: 0.75rem; }
.form-2 .fas { margin-right: 0.5rem; color: var(--pitch-mid); }

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--pitch-dark);
  padding: 3rem 0 2rem;
  color: rgba(255,255,255,0.75);
}

.footer h4 {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.85rem;
}

.footer p, .footer li { font-size: 0.88rem; color: rgba(255,255,255,0.7); }
.footer a { color: var(--accent); }
.footer a:hover { color: #ffe57a; }
.footer .list-unstyled li { margin-bottom: 0.4rem; }
.footer .media i { color: var(--accent); margin-right: 0.4rem; font-size: 0.65rem; vertical-align: middle; }

.footer .fa-stack a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer .fa-stack a:hover { color: var(--accent); }
.footer .fa-stack-2x { color: rgba(255,255,255,0.15); }

.copyright {
  background: #0b2e20;
  padding: 1rem 0;
}

.copyright .p-small {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
  text-align: center;
}

.copyright a { color: rgba(255,255,255,0.55); }
.copyright a:hover { color: var(--accent); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 992px) {
  body { padding-top: 68px; }

  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .teams-list {
    grid-template-columns: 1fr;
  }

  .header .header-content { padding-top: 3rem; }
  .header h1 { font-size: 1.9rem; }

  .summary-list { gap: 0.75rem; }
}

@media (max-width: 768px) {
  .wizard-container { padding: 1.25rem; }
  .wizard-progress { gap: 0; }
  .step-dot { width: 30px; height: 30px; font-size: 0.78rem; }

  .teams-grid {
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  }

  .comp-list {
    grid-template-columns: 1fr;
  }

  .toggle-header { flex-direction: column; align-items: flex-start; gap: 0.75rem; }

  .input-row { flex-direction: column; }
  .input-row input[type="email"] { width: 100%; flex: none; height: 48px; }
  .input-row .btn-primary { width: 100%; }

  .page-card { padding: 2rem 1.25rem; }

  .step-connector-line { display: none; }
}

@media (max-width: 480px) {
  .league-tabs { gap: 0.3rem; }
  .tab-btn { padding: 0.35rem 0.65rem; font-size: 0.78rem; }
  .select-card { min-height: 70px; }
}
