:root {
  --bg: #09111f;
  --bg-2: #0d172a;
  --card: rgba(10, 17, 31, 0.84);
  --card-soft: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.09);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.74);
  --gold: #d4af37;
  --gold-2: #f0c556;
  --orange: #ff7b1f;
  --shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 123, 31, 0.16), transparent 24%),
    radial-gradient(circle at 100% 15%, rgba(212, 175, 55, 0.14), transparent 26%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 52%, #09111f 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.container {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(9, 17, 31, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  padding: 6px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-overline {
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-copy strong {
  font-size: 16px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  position: relative;
  text-decoration: none;
  font-weight: 700;
  color: rgba(255,255,255,0.82);
}

.main-nav a.active,
.main-nav a:hover { color: #fff; }
.main-nav a.active::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.header-cta:hover,
.button:hover { transform: translateY(-1px); }

.header-cta,
.button-primary {
  color: #101521;
  background: linear-gradient(135deg, var(--gold-2), var(--gold) 45%, var(--orange));
  box-shadow: 0 16px 34px rgba(212, 175, 55, 0.22);
}

.button-secondary {
  color: #fff;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 64px 0 34px;
}

.hero-orb {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.22;
}

.orb-left {
  top: -130px;
  left: -140px;
  background: var(--orange);
}
.orb-right {
  top: 80px;
  right: -160px;
  background: var(--gold);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 34px;
  align-items: center;
}

.eyebrow,
.section-tag,
.card-kicker,
.sponsor-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow,
.section-tag,
.card-kicker { color: var(--gold-2); }

.hero-copy h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: .96;
  letter-spacing: -0.04em;
}

.hero-lead {
  max-width: 700px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.76;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.hero-facts article,
.highlight-card,
.feature-card,
.contacts-box {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
}

.hero-facts article {
  padding: 18px 18px 20px;
  border-radius: var(--radius-md);
}
.hero-facts span {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,.58);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-facts strong {
  display: block;
  font-size: 18px;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
}

.sponsor-callout {
  width: fit-content;
  margin-left: auto;
  margin-bottom: 20px;
  padding: 16px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(8, 15, 28, 0.78);
  box-shadow: var(--shadow);
}
.sponsor-label { color: rgba(255,255,255,.72); margin-bottom: 10px; }
.sponsor-callout img {
  width: 150px;
  height: auto;
  object-fit: contain;
  filter: brightness(1.05);
}

.players-stage {
  position: relative;
  min-height: 620px;
  padding: 16px 8px 0;
}

.player-card {
  position: absolute;
  width: min(46%, 320px);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(6, 11, 22, 0.82);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.34);
}
.player-left { left: 0; bottom: 44px; }
.player-right { right: 0; top: 18px; }
.player-card img {
  width: 100%;
  height: 470px;
  object-fit: cover;
}
.player-info {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(8, 14, 24, 0.7);
  backdrop-filter: blur(8px);
}
.player-info span {
  display: block;
  color: rgba(255,255,255,.7);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.player-info strong {
  display: block;
  margin-top: 6px;
  font-size: 28px;
  line-height: 1.05;
}

.center-badge {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 184px;
  height: 184px;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.14), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}
.center-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.section {
  padding: 42px 0;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr .94fr;
  gap: 28px;
  align-items: start;
}

.section-copy h2,
.section-head h2,
.contacts-box h2 {
  margin: 0;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.section-copy p,
.contacts-box p,
.highlight-card p {
  color: var(--muted);
  line-height: 1.78;
  font-size: 17px;
}

.feature-stack {
  display: grid;
  gap: 16px;
}
.feature-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border-radius: 22px;
}
.feature-card img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}
.feature-card h3 {
  margin: 0 0 8px;
  font-size: 21px;
}
.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.centered {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 24px;
}


.story-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 28px;
  align-items: center;
}

.story-visual {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: stretch;
}

.story-image-card,
.location-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  box-shadow: var(--shadow);
}

.story-image-card img,
.location-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-image-main,
.story-image-side {
  min-height: 520px;
}

.story-copy p {
  color: var(--muted);
  line-height: 1.78;
  font-size: 17px;
}

.story-copy .button {
  margin-top: 12px;
}

.location-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
}

.location-card {
  min-height: 280px;
}

.location-card-large {
  grid-row: span 2;
  min-height: 578px;
}

.location-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(8,14,24,0.25), rgba(8,14,24,0.82));
  backdrop-filter: blur(8px);
}

.location-overlay h3,
.technical-sponsor-copy h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.08;
}

.location-overlay p,
.technical-sponsor-copy p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.technical-sponsor-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 26px;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(212,175,55,0.12), rgba(255,123,31,0.08));
}

.technical-sponsor-card img {
  width: 180px;
  height: auto;
  object-fit: contain;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.highlight-card {
  padding: 24px;
  border-radius: 24px;
}
.highlight-card h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.12;
}
.highlight-card p { margin-bottom: 0; }
.highlight-card.emphasis {
  background: linear-gradient(135deg, rgba(255,123,31,0.18), rgba(212,175,55,0.14), rgba(255,255,255,0.04));
}

.contacts-box {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 22px;
  padding: 28px;
  border-radius: 30px;
}

.contact-actions {
  display: grid;
  gap: 14px;
}
.contact-pill {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 20px;
  text-decoration: none;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.contact-pill span {
  color: rgba(255,255,255,0.66);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.contact-pill strong {
  font-size: 20px;
  line-height: 1.35;
}
.contact-pill-mail strong {
  font-size: 16px;
  word-break: break-word;
}

.site-footer {
  padding: 28px 0 40px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-inner p {
  margin: 0;
  color: rgba(255,255,255,.62);
}
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255,255,255,.74);
  text-decoration: none;
  font-weight: 700;
}
.footer-links a:hover { color: #fff; }

@media (max-width: 1100px) {
  .hero-grid,
  .section-grid,
  .story-grid,
  .contacts-box {
    grid-template-columns: 1fr;
  }

  .players-stage {
    min-height: 540px;
  }

  .story-visual,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-card-large {
    grid-row: auto;
    min-height: 380px;
  }

  .sponsor-callout {
    margin-left: 0;
  }
}

@media (max-width: 860px) {
  .story-image-main,
  .story-image-side,
  .location-card,
  .location-card-large {
    min-height: 280px;
  }

  .technical-sponsor-card {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: static;
  }

  .header-inner {
    min-height: auto;
    padding: 16px 0;
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    padding-top: 8px;
    overflow-x: auto;
  }

  .main-nav a { white-space: nowrap; }

  .hero-copy h1 {
    font-size: clamp(36px, 10vw, 56px);
  }

  .hero-facts,
  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .players-stage {
    min-height: auto;
    display: grid;
    gap: 18px;
    padding-top: 8px;
  }

  .player-card,
  .player-left,
  .player-right,
  .center-badge {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .player-card img {
    height: 420px;
  }

  .center-badge {
    width: 130px;
    height: 130px;
    margin: 0 auto;
  }

  .contacts-box {
    padding: 22px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 20px, 1240px);
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .hero-section {
    padding-top: 36px;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .player-card img {
    height: 340px;
  }

  .feature-card {
    grid-template-columns: 48px 1fr;
    padding: 18px;
  }

  .feature-card img {
    width: 48px;
    height: 48px;
  }

  .contact-pill strong {
    font-size: 18px;
  }
}

/* ===== SERVIZI PAGE ===== */

.services-hero { padding-bottom: 18px; }
.services-hero-grid,
.experience-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}
.services-hero-visual,
.experience-panels,
.services-mini-grid { display: grid; gap: 18px; }
.services-hero-card,
.service-card,
.safety-card,
.timeline-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
  border-radius: 24px;
  overflow: hidden;
}
.services-hero-main { min-height: 420px; position: relative; }
.services-hero-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.services-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(8,14,24,0.22), rgba(8,14,24,0.86));
  backdrop-filter: blur(8px);
}
.services-overlay h3,
.guest-copy h3,
.safety-card h3,
.timeline-card h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.08;
}
.services-overlay.compact h3 { font-size: 24px; }
.services-mini-grid { grid-template-columns: 1fr 1fr; }
.services-mini-grid .services-hero-card { min-height: 220px; position: relative; }
.guest-card {
  display: flex;
  align-items: center;
  padding: 26px;
  background: linear-gradient(135deg, rgba(255,123,31,0.18), rgba(212,175,55,0.14), rgba(255,255,255,0.04));
}
.guest-copy p,
.experience-copy p,
.timeline-card p,
.safety-card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}
.narrow-head { max-width: 860px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}
.service-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
}
.service-card img { width: 58px; height: 58px; object-fit: contain; }
.service-card h3 { margin: 0 0 10px; font-size: 22px; line-height: 1.18; }
.service-card p { margin: 0; color: var(--muted); line-height: 1.72; }
.service-card-emphasis {
  background: linear-gradient(135deg, rgba(255,123,31,0.18), rgba(212,175,55,0.14), rgba(255,255,255,0.04));
}
.safety-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
}
.safety-card { padding: 26px; }
.stat-card strong {
  display: block;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
}
.image-card { padding: 0; min-height: 240px; }
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}
.timeline-card { padding: 24px; }
.timeline-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: #101521;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-2), var(--gold) 45%, var(--orange));
}
.services-contacts-box { align-items: center; }
@media (max-width: 1100px) {
  .services-hero-grid,
  .experience-grid,
  .safety-grid,
  .contacts-box { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .services-grid,
  .timeline-grid,
  .services-mini-grid { grid-template-columns: 1fr; }
  .services-hero-main,
  .services-mini-grid .services-hero-card,
  .image-card { min-height: 280px; }
}


/* ===== ISCRIZIONE PAGE ===== */
.registration-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}
.registration-side-card,
.form-section-card,
.form-message {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
  border-radius: 26px;
}
.registration-side-card {
  padding: 28px;
}
.registration-side-card h3,
.form-section-head h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
}
.registration-side-card p {
  color: var(--muted);
  line-height: 1.78;
  font-size: 17px;
}
.registration-form {
  display: grid;
  gap: 18px;
}
.form-section-card {
  padding: 26px;
}
.form-section-head {
  margin-bottom: 22px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field-full {
  grid-column: 1 / -1;
}
.form-field label {
  font-size: 14px;
  font-weight: 700;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 15px;
}
.form-field textarea {
  min-height: 120px;
  resize: vertical;
}
.form-field select option {
  color: #101521;
}
.checkbox-stack {
  display: grid;
  gap: 14px;
}
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  line-height: 1.6;
}
.checkbox-row input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
}
.form-actions-wrap {
  display: flex;
  justify-content: flex-start;
  margin-top: 4px;
}
.form-message {
  padding: 18px 22px;
  margin-bottom: 18px;
}
.form-message strong {
  display: block;
  font-size: 18px;
}
.form-message p,
.form-message li {
  color: var(--muted);
  line-height: 1.7;
}
.form-message-success {
  background: linear-gradient(135deg, rgba(45, 180, 95, 0.18), rgba(212,175,55,0.12), rgba(255,255,255,0.04));
}
.form-message-error {
  background: linear-gradient(135deg, rgba(220, 74, 74, 0.18), rgba(255,123,31,0.12), rgba(255,255,255,0.04));
}
.form-message ul {
  margin: 12px 0 0;
  padding-left: 18px;
}
.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 1100px) {
  .registration-hero-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 860px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-actions-wrap .button {
    width: 100%;
  }
}


/* ===== CONTATTI PAGE ===== */
.contacts-hero-grid,
.contact-info-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.contacts-side-stack,
.contact-info-panels {
  display: grid;
  gap: 18px;
}
.contacts-highlight-card,
.contact-card-large,
.info-panel-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
  border-radius: 24px;
}
.contacts-highlight-card,
.info-panel-card {
  padding: 24px;
}
.contacts-highlight-card h3,
.contact-card-large h3,
.info-panel-card h3 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.08;
}
.contacts-highlight-card p,
.info-panel-card p,
.contact-info-copy p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}
.contacts-highlight-card.emphasis {
  background: linear-gradient(135deg, rgba(255,123,31,0.18), rgba(212,175,55,0.14), rgba(255,255,255,0.04));
}
.contacts-grid-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.contact-card-large {
  display: block;
  padding: 26px;
  text-decoration: none;
}
.contact-card-large p {
  margin: 12px 0 0;
  color: var(--gold-2);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.4;
}
.contact-card-mail p {
  color: #fff;
  font-size: 18px;
  word-break: break-word;
}
.image-panel-card {
  padding: 0;
  overflow: hidden;
  min-height: 280px;
}
.image-panel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 1100px) {
  .contacts-hero-grid,
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  .contacts-grid-cards {
    grid-template-columns: 1fr;
  }
}


/* ===== UPDATE CONTATTI / LOGHI / CONTATTI ===== */
.sponsor-logos-row { display:flex; align-items:stretch; gap:14px; }
.sponsor-logo-box { flex:1; min-width:0; padding:12px 14px; border-radius:18px; background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.08); }
.sponsor-logo-box img { width:100%; height:56px; object-fit:contain; }
.soccer-logo-box img { height:60px; }
.mini-label { display:block; margin-bottom:8px; color:rgba(255,255,255,.66); font-size:10px; font-weight:800; letter-spacing:.12em; text-transform:uppercase; }
.contact-actions-single { grid-template-columns:1fr; }
.contact-hero-head { max-width:900px; margin:0 auto; text-align:center; }
.contact-hero-head h1 { margin:0; font-size:clamp(40px, 5vw, 68px); line-height:.97; letter-spacing:-0.04em; }
.contact-hero-lead { max-width:780px; margin-left:auto; margin-right:auto; }
.contact-hero-actions { justify-content:center; }
.contacts-grid-cards-two { grid-template-columns:repeat(2, minmax(0,1fr)); max-width:980px; margin:0 auto; }
.contacts-highlight-card h3, .contact-card-large h3, .info-panel-card h3 { word-break:break-word; }
.contact-card-large { min-height:220px; }
.contact-card-large p { font-size:19px; }
.contact-card-mail p { font-size:17px; }
@media (max-width:1100px) { .contacts-grid-cards-two { grid-template-columns:1fr; } }
@media (max-width:860px) { .sponsor-logos-row { flex-direction:column; } .contact-hero-actions { flex-direction:column; } }


/* ===== UPDATE 2018 / FOOTER LOGO / HOME LOGO ===== */
.soccer-logo-box {
  flex: 1.15;
}
.soccer-logo-box img {
  height: 76px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.footer-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  padding: 4px;
}
.footer-brand p {
  margin: 0;
  color: rgba(255,255,255,.62);
}
@media (max-width: 860px) {
  .footer-brand {
    width: 100%;
  }
}


/* ===== PAYMENT METHODS ===== */
.payment-method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.payment-method-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}
.payment-method-card input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}
.payment-method-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.payment-method-copy strong {
  font-size: 18px;
}
.payment-method-copy small {
  color: var(--muted);
  line-height: 1.6;
}
@media (max-width: 860px) {
  .payment-method-grid {
    grid-template-columns: 1fr;
  }
}
