:root {
  --brand-primary: #5a800f;
  --brand-primary-2: #75a316;
  --brand-blue: #006da8;
  --brand-blue-2: #008bd2;
  --brand-deep: #12372a;
  --brand-ink: #0b241b;
  --brand-gold: #c99a43;
  --brand-gold-soft: #f3d28c;
  --brand-sky: #0c7890;
  --surface: #ffffff;
  --surface-warm: #f7f3e8;
  --surface-mint: #eef5e5;
  --text: #1e2b25;
  --muted: #68766e;
  --line: rgba(18, 55, 42, 0.14);
  --shadow: 0 24px 80px rgba(18, 55, 42, 0.14);
  --shadow-soft: 0 14px 40px rgba(18, 55, 42, 0.1);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
  --header-height: 84px;
  --font: "Aptos", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--surface);
  font-size: 0.96rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  background: rgba(90, 128, 15, 0.22);
}

.skip-link {
  position: absolute;
  left: 18px;
  top: -60px;
  z-index: 999;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--brand-deep);
  color: #fff;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 18px;
}

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.section {
  padding: clamp(60px, 8vw, 104px) 0;
  position: relative;
}

.section.compact {
  padding: clamp(42px, 6vw, 70px) 0;
}

.section.warm {
  background:
    radial-gradient(circle at 12% 20%, rgba(243, 210, 140, 0.24), transparent 34%),
    linear-gradient(180deg, #fff 0%, var(--surface-warm) 100%);
}

.section.deep {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 18% 20%, rgba(243, 210, 140, 0.22), transparent 30%),
    radial-gradient(circle at 84% 8%, rgba(0, 139, 210, 0.22), transparent 26%),
    linear-gradient(135deg, #164d3b, var(--brand-deep));
}

.section.deep .section-lead,
.section.deep .muted,
.section.deep p {
  color: rgba(255, 255, 255, 0.78);
}

.section.deep .eyebrow {
  color: var(--brand-gold-soft);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.85rem;
  color: var(--brand-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--brand-deep);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.deep h1,
.deep h2,
.deep h3,
.hero h1,
.hero h2,
.hero h3 {
  color: #fff;
}

h1 {
  font-size: clamp(2rem, 5.6vw, 4.8rem);
}

h2 {
  font-size: clamp(1.55rem, 3.5vw, 3rem);
}

h3 {
  font-size: clamp(1.05rem, 1.55vw, 1.45rem);
}

p {
  color: rgba(30, 43, 37, 0.78);
}

.section-lead {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  color: rgba(30, 43, 37, 0.72);
}

.muted {
  color: var(--muted);
}

.kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.62rem;
  min-height: 46px;
  padding: 0.78rem 1.16rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--brand-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  box-shadow: 0 16px 30px rgba(90, 128, 15, 0.24);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--brand-deep);
  box-shadow: 0 18px 40px rgba(18, 55, 42, 0.22);
}

.btn.secondary {
  background: #fff;
  color: var(--brand-deep);
  box-shadow: none;
}

.btn.secondary:hover {
  color: #fff;
  background: var(--brand-deep);
}

.btn.ghost {
  border-color: rgba(18, 55, 42, 0.2);
  background: transparent;
  color: var(--brand-deep);
  box-shadow: none;
}

.btn.ghost:hover {
  border-color: var(--brand-deep);
  background: var(--brand-deep);
  color: #fff;
}

.hero .btn.ghost {
  border-color: rgba(18, 55, 42, 0.22);
  color: var(--brand-deep);
}

.hero .btn.ghost:hover {
  border-color: var(--brand-deep);
  background: var(--brand-deep);
  color: #fff;
}

.hero .route-card h2 {
  color: var(--brand-deep);
}

.hero .route-card .eyebrow {
  color: var(--brand-primary);
}

.btn.gold {
  background: var(--brand-gold);
  color: #1f170a;
}

.btn.gold:hover {
  background: var(--brand-gold-soft);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-top: 1.8rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(18, 55, 42, 0.08);
  backdrop-filter: blur(18px);
}

.global-honor-strip {
  position: relative;
  z-index: 80;
  border-bottom: 1px solid rgba(18, 55, 42, .08);
  background:
    linear-gradient(90deg, rgba(255,255,255,.96), rgba(247,243,232,.94));
}

.global-honor-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  min-height: 42px;
  text-align: center;
}

.global-honor-inner span {
  display: inline-flex;
  min-width: max-content;
  padding: .3rem .62rem;
  border-radius: 999px;
  background: var(--brand-deep);
  color: var(--brand-gold-soft);
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.global-honor-inner p {
  margin: 0;
  color: rgba(30, 43, 37, .72);
  font-size: .84rem;
  font-weight: 700;
}

.global-honor-inner a {
  color: var(--brand-primary);
  font-size: .78rem;
  font-weight: 900;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  min-height: var(--header-height);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  min-width: max-content;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 0.08rem;
}

.brand-title {
  color: var(--brand-blue);
  font-size: 0.88rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 0.9;
}

.brand-subtitle {
  color: var(--brand-primary);
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.main-nav a {
  position: relative;
  padding: 0.8rem 0.68rem;
  color: rgba(18, 55, 42, 0.78);
  font-size: 0.88rem;
  font-weight: 750;
  letter-spacing: 0.005em;
  text-transform: none;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0.64rem;
  right: 0.64rem;
  bottom: 0.48rem;
  height: 2px;
  border-radius: 99px;
  background: var(--brand-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--brand-primary);
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.header-actions .btn {
  min-height: 44px;
  padding-inline: 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-primary));
  font-size: 0.76rem;
  box-shadow: 0 14px 30px rgba(0, 109, 168, .2);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(18, 55, 42, 0.12);
  border-radius: 999px;
  background: #fff;
  color: var(--brand-deep);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  color: var(--brand-deep);
  background:
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(247,243,232,.82) 42%, rgba(255,255,255,.1) 100%),
    url("../images/espana-italia-fiax.png") center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -4% -1px -4%;
  height: 95px;
  background: #fff;
  clip-path: polygon(0 42%, 45% 72%, 100% 22%, 100% 100%, 0 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
  padding: clamp(54px, 6vw, 88px) 0 clamp(82px, 10vw, 118px);
}

.hero-copy {
  max-width: 780px;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(18, 55, 42, .1);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.hero h1 {
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 720px;
  color: rgba(30, 43, 37, 0.82);
  font-size: clamp(0.98rem, 1.28vw, 1.08rem);
  font-weight: 700;
}

.hero-truth {
  max-width: 700px;
  margin: 1.05rem 0 0;
  padding-left: 1rem;
  border-left: 3px solid var(--brand-gold);
  color: rgba(30, 43, 37, 0.82);
  font-size: clamp(0.94rem, 1.15vw, 1.02rem);
  font-weight: 750;
}

.hero-panel {
  position: relative;
  padding: 1px;
  border: 1px solid rgba(18, 55, 42, 0.1);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .8);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.hero-panel::before {
  display: none;
}

.route-card {
  position: relative;
  padding: 1.55rem;
  border-radius: 32px;
  background:
    radial-gradient(circle at 14% 18%, rgba(243, 210, 140, 0.46), transparent 38%),
    linear-gradient(145deg, rgba(9, 37, 28, 0.9), rgba(18, 55, 42, 0.78));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22);
}

.route-card h2 {
  margin-bottom: 0.75rem;
  font-size: 1.22rem;
  line-height: 1.08;
}

.premium-activation {
  background:
    radial-gradient(circle at 16% 14%, rgba(243, 210, 140, 0.28), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(247,243,232,.9));
}

.activation-list {
  display: grid;
  gap: 0.72rem;
  margin-top: 1.1rem;
}

.activation-list article {
  padding: 0.86rem 0.95rem;
  border: 1px solid rgba(18, 55, 42, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.activation-list strong {
  display: block;
  color: var(--brand-deep);
  font-size: 0.88rem;
  line-height: 1.2;
}

.activation-list span {
  display: block;
  margin-top: 0.25rem;
  color: rgba(30, 43, 37, 0.7);
  font-size: 0.8rem;
  line-height: 1.35;
}

.route-card ul {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.route-card li {
  display: flex;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.96rem;
  font-weight: 700;
}

.route-card li::before {
  content: "✓";
  color: var(--brand-gold-soft);
  font-weight: 900;
}

.paradigm {
  display: grid;
  gap: 1rem;
  padding: clamp(1.6rem, 3.2vw, 2.4rem);
  border-radius: var(--radius-xl);
  color: #fff;
  background:
    radial-gradient(circle at 12% 8%, rgba(243, 210, 140, .35), transparent 34%),
    linear-gradient(135deg, var(--brand-deep), #071b14);
  box-shadow: var(--shadow);
}

.paradigm h2 {
  margin-bottom: .2rem;
  font-size: clamp(2.2rem, 5.2vw, 5rem);
  letter-spacing: -0.055em;
}

.paradigm strong {
  color: var(--brand-gold-soft);
}

.paradigm p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
}

.hero-title-lines span {
  display: block;
}

.hero-title-lines .blue {
  color: #3fb2ef;
  font-size: .42em;
  letter-spacing: .14em;
  text-shadow: none;
}

.hero-title-lines .future {
  color: var(--brand-deep);
  font-size: .78em;
  text-transform: none;
  letter-spacing: -.06em;
}

.truth-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(1.7rem, 4vw, 3.2rem);
  border-radius: var(--radius-xl);
  color: var(--brand-deep);
  background:
    radial-gradient(circle at 8% 12%, rgba(243, 210, 140, .46), transparent 34%),
    radial-gradient(circle at 92% 86%, rgba(0, 139, 210, .12), transparent 32%),
    linear-gradient(135deg, #fff, #f7f3e8);
  box-shadow: var(--shadow);
}

.truth-panel .eyebrow {
  align-self: start;
  color: var(--brand-primary);
}

.truth-panel h2 {
  margin: 0;
  color: var(--brand-deep);
  font-size: clamp(2rem, 4.6vw, 3.8rem);
  letter-spacing: -0.07em;
}

.truth-copy {
  display: grid;
  gap: 1rem;
}

.truth-copy p {
  margin: 0;
  color: rgba(30, 43, 37, .82);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
}

.truth-copy strong {
  color: var(--brand-deep);
}

.light-section {
  background:
    radial-gradient(circle at 14% 18%, rgba(243, 210, 140, .26), transparent 32%),
    radial-gradient(circle at 88% 24%, rgba(0, 139, 210, .11), transparent 30%),
    linear-gradient(180deg, #fff, #fbf8ef);
}

.gastronomy-panel {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(1.7rem, 4vw, 3.2rem);
  border: 1px solid rgba(18, 55, 42, .12);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,255,255,.78)),
    radial-gradient(circle at 88% 12%, rgba(201, 154, 67, .26), transparent 34%);
  box-shadow: var(--shadow-soft);
}

.gastronomy-panel h2 {
  margin-bottom: 0;
  color: var(--brand-deep);
  font-size: clamp(1.55rem, 3.2vw, 2.7rem);
}

.gastronomy-copy {
  display: grid;
  gap: .95rem;
}

.gastronomy-copy p {
  margin: 0;
  color: rgba(30, 43, 37, .82);
  font-size: clamp(0.96rem, 1.15vw, 1.04rem);
}

.gastronomy-copy strong {
  color: var(--brand-primary);
}

.signal-grid .feature-card,
.action-card {
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.signal-grid .feature-card:hover,
.action-card:hover {
  transform: translateY(-4px);
  border-color: rgba(90, 128, 15, .28);
  box-shadow: var(--shadow);
}

.refined-flow .flow-step::before {
  content: "";
  width: 34px;
  height: 4px;
  margin-bottom: 1.15rem;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--brand-gold-soft), var(--brand-primary-2));
}

.sector-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.sector-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(18, 55, 42, .11);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  color: var(--brand-deep);
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(18, 55, 42, .06);
}

.premium-map {
  margin-top: 0;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: -48px;
  position: relative;
  z-index: 5;
}

.metric-card,
.card,
.feature-card,
.news-card,
.speaker-card,
.program-card,
.zone-detail,
.form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.metric-card {
  padding: 1.25rem;
  background: #fff;
}

.metric-card strong {
  display: block;
  color: var(--brand-deep);
  font-size: clamp(1.4rem, 3vw, 2.25rem);
  line-height: 1;
}

.metric-card span {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.grid {
  display: grid;
  gap: 1.1rem;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.feature-card,
.news-card,
.speaker-card,
.program-card {
  padding: clamp(1.15rem, 2.2vw, 1.7rem);
}

.card h3,
.feature-card h3,
.news-card h3,
.speaker-card h3,
.program-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.12rem;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: rgba(90, 128, 15, 0.12);
  color: var(--brand-primary);
  font-weight: 950;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.visual-card {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(18, 55, 42, 0.02), rgba(18, 55, 42, 0.5)),
    url("../images/contact-field-current.jpg") center / cover;
  box-shadow: var(--shadow);
}

.visual-card.alt {
  background:
    radial-gradient(circle at 20% 20%, rgba(243, 210, 140, 0.28), transparent 34%),
    linear-gradient(135deg, var(--brand-deep), var(--brand-ink));
}

.visual-card .floating-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  backdrop-filter: blur(16px);
}

.floating-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.b2b-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.flow-step {
  position: relative;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
}

.flow-step::before {
  content: "↗";
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.1rem;
  border-radius: 999px;
  background: var(--brand-gold);
  color: #20170b;
  font-weight: 950;
}

.flow-step h3 {
  margin-bottom: 0.55rem;
  font-size: 1.15rem;
}

.flow-step p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.international-map {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: stretch;
  margin-top: 1.5rem;
}

.territory-card {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.territory-card h3 {
  margin-bottom: 0.45rem;
}

.bridge {
  display: grid;
  place-items: center;
  min-width: 92px;
}

.bridge span {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: var(--brand-deep);
  color: var(--brand-gold-soft);
  font-size: 1.7rem;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: rgba(90, 128, 15, 0.1);
  color: var(--brand-deep);
  font-size: 0.78rem;
  font-weight: 850;
}

.timeline {
  display: grid;
  gap: 0.85rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.timeline-time {
  color: var(--brand-primary);
  font-weight: 950;
}

.timeline-item h3 {
  margin-bottom: 0.35rem;
  font-size: 1.08rem;
}

.timeline-item p {
  margin-bottom: 0;
}

.map-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 1.2rem;
  align-items: stretch;
}

.fair-map {
  min-height: 470px;
  padding: 1.2rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 22% 16%, rgba(243, 210, 140, 0.35), transparent 30%),
    linear-gradient(145deg, #f7f3e8, #eef5e5);
  box-shadow: var(--shadow-soft);
}

.fair-map svg {
  width: 100%;
  height: 100%;
  min-height: 430px;
}

.fair-zone {
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.fair-zone:hover,
.fair-zone.is-active {
  opacity: 0.82;
}

.map-label {
  font-size: 18px;
  font-weight: 900;
  fill: var(--brand-deep);
}

.zone-detail {
  padding: 1.5rem;
  align-self: stretch;
}

.zone-detail h3 {
  margin-bottom: 0.7rem;
}

.zone-detail ul,
.check-list {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.zone-detail li,
.check-list li {
  display: flex;
  gap: 0.55rem;
  color: rgba(30, 43, 37, 0.78);
}

.zone-detail li::before,
.check-list li::before {
  content: "✓";
  color: var(--brand-primary);
  font-weight: 950;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 10vw, 136px) 0 clamp(72px, 9vw, 112px);
  color: #fff;
  background:
    radial-gradient(circle at 16% 24%, rgba(117, 163, 22, 0.42), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(201, 154, 67, 0.26), transparent 30%),
    radial-gradient(circle at 72% 86%, rgba(0, 109, 168, 0.28), transparent 34%),
    linear-gradient(135deg, rgba(11, 36, 27, 0.98), rgba(18, 55, 42, 0.94));
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 52%, rgba(255,255,255,.06) 52% 53%, transparent 53%),
    linear-gradient(145deg, transparent 0 68%, rgba(255,255,255,.05) 68% 69%, transparent 69%);
  opacity: .8;
  pointer-events: none;
}

.page-hero.exponer {
  background:
    radial-gradient(circle at 74% 24%, rgba(0, 139, 210, .34), transparent 28%),
    radial-gradient(circle at 18% 82%, rgba(243, 210, 140, .28), transparent 32%),
    linear-gradient(135deg, #08251c, #12372a);
}

.page-hero.patrocinios {
  background:
    radial-gradient(circle at 76% 18%, rgba(243, 210, 140, .34), transparent 30%),
    radial-gradient(circle at 20% 80%, rgba(90, 128, 15, .42), transparent 32%),
    linear-gradient(135deg, #09271d, #1b3e2f);
}

.page-hero.programa {
  background:
    radial-gradient(circle at 72% 22%, rgba(0, 109, 168, .38), transparent 31%),
    radial-gradient(circle at 22% 86%, rgba(117, 163, 22, .36), transparent 34%),
    linear-gradient(135deg, #071b14, #12372a);
}

.page-hero.plano {
  background:
    radial-gradient(circle at 82% 18%, rgba(201, 154, 67, .34), transparent 30%),
    radial-gradient(circle at 18% 82%, rgba(0, 139, 210, .32), transparent 34%),
    linear-gradient(135deg, #09251c, #12372a);
}

.page-hero.noticias {
  background:
    radial-gradient(circle at 75% 25%, rgba(0, 139, 210, .28), transparent 30%),
    radial-gradient(circle at 18% 80%, rgba(243, 210, 140, .34), transparent 34%),
    linear-gradient(135deg, #071b14, #173f31);
}

.page-hero.participar {
  background:
    radial-gradient(circle at 78% 20%, rgba(117, 163, 22, .38), transparent 30%),
    radial-gradient(circle at 18% 84%, rgba(201, 154, 67, .32), transparent 34%),
    linear-gradient(135deg, #061b14, #12372a);
}

.page-hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.6rem;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto -4% -1px -4%;
  height: 72px;
  background: #fff;
  clip-path: polygon(0 52%, 54% 84%, 100% 32%, 100% 100%, 0 100%);
}

.page-hero .container {
  position: relative;
  z-index: 2;
  max-width: 960px;
  padding: clamp(1.4rem, 3.5vw, 2.6rem);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(7, 27, 20, .58), rgba(18, 55, 42, .36));
  box-shadow: 0 28px 90px rgba(0, 0, 0, .18);
  backdrop-filter: blur(8px);
}

.page-hero h1 {
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 18px 44px rgba(0, 0, 0, .26);
  text-transform: uppercase;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.98rem, 1.24vw, 1.08rem);
  font-weight: 650;
}

.page-hero .eyebrow {
  color: var(--brand-gold-soft);
}

.benefit-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.benefit {
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.category {
  min-height: 132px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.category strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--brand-deep);
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.4rem;
}

.filter-pill {
  padding: 0.6rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--brand-deep);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.filter-pill.is-active {
  border-color: var(--brand-primary);
  background: var(--brand-primary);
  color: #fff;
}

.program-grid {
  display: grid;
  gap: 1rem;
}

.program-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

.program-card[data-hidden="true"] {
  display: none;
}

.program-day {
  color: var(--brand-primary);
  font-weight: 950;
}

.program-type {
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: var(--surface-mint);
  color: var(--brand-deep);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.speaker-card {
  display: grid;
  gap: 0.9rem;
}

.speaker-avatar {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 20% 20%, rgba(243, 210, 140, 0.7), transparent 38%),
    linear-gradient(135deg, var(--brand-primary), var(--brand-deep));
  color: #fff;
  font-size: 1.5rem;
  font-weight: 950;
}

.news-card {
  display: grid;
  gap: 0.9rem;
  min-height: 100%;
}

.sponsor-highlight {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(1.4rem, 3vw, 2.5rem);
  border: 1px solid rgba(18, 55, 42, .12);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 12% 12%, rgba(243, 210, 140, .24), transparent 34%),
    linear-gradient(135deg, #fff, #f7f3e8);
  box-shadow: var(--shadow-soft);
}

.sponsor-logo-card {
  display: grid;
  place-items: center;
  min-height: 210px;
  padding: 2rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, .8);
  box-shadow: inset 0 0 0 1px rgba(18, 55, 42, .08);
}

.sponsor-logo-card img {
  width: min(100%, 330px);
  max-height: 150px;
  object-fit: contain;
}

.soon-panel,
.social-band {
  margin-bottom: 1.2rem;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid rgba(18, 55, 42, .12);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 88% 16%, rgba(201, 154, 67, .24), transparent 30%),
    linear-gradient(135deg, #fff, #f7f3e8);
  box-shadow: var(--shadow-soft);
}

.soon-panel h2,
.social-band h2 {
  margin-bottom: .7rem;
}

.soon-panel p,
.social-band p {
  max-width: 820px;
  margin-bottom: 0;
}

.map-plan-panel {
  margin-bottom: 1.2rem;
  padding: clamp(1rem, 2.4vw, 1.5rem);
  border: 1px solid rgba(18, 55, 42, .12);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 90% 10%, rgba(243, 210, 140, .18), transparent 32%),
    rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-soft);
}

.event-plan-image {
  display: block;
  overflow: hidden;
  margin-top: 1.2rem;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(18, 55, 42, .14);
}

.event-plan-image img {
  display: block;
  width: 100%;
  height: auto;
}

.social-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.press-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
}

.press-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
  padding: .95rem 1.05rem;
  border: 1px solid rgba(18, 55, 42, .12);
  border-radius: 18px;
  background: #fff;
  color: var(--brand-deep);
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(18, 55, 42, .05);
  transition: transform .2s ease, border-color .2s ease;
}

.press-list a::after {
  content: "↗";
  color: var(--brand-primary);
  font-weight: 950;
}

.press-list a:hover {
  transform: translateY(-2px);
  border-color: rgba(90, 128, 15, .34);
}

.news-meta {
  color: var(--brand-primary);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.form-card {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.lead-form {
  display: grid;
  gap: 1rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--brand-deep);
  font-size: 0.82rem;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(18, 55, 42, 0.16);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 4px rgba(90, 128, 15, 0.12);
}

.form-message {
  display: none;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: var(--surface-mint);
  color: var(--brand-deep);
  font-weight: 800;
}

.form-message.is-visible {
  display: block;
}

.cta-band {
  padding: clamp(38px, 6vw, 64px);
  border-radius: var(--radius-xl);
  color: #fff;
  background:
    radial-gradient(circle at 20% 10%, rgba(243, 210, 140, 0.32), transparent 30%),
    linear-gradient(135deg, var(--brand-deep), var(--brand-ink));
  box-shadow: var(--shadow);
}

.cta-band h2 {
  margin-bottom: 0.75rem;
}

.cta-band p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.collaborators {
  overflow: hidden;
  padding: clamp(42px, 6vw, 72px) 0;
  border-top: 1px solid rgba(18, 55, 42, 0.08);
  background: #fff;
}

.collaborators-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.1rem;
  text-align: left;
}

.collaborators-header > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.collaborators-header .eyebrow {
  margin: 0;
}

.collaborators-header h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(1rem, 1.5vw, 1.45rem);
  letter-spacing: -0.025em;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
}

.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 90px;
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #fff, transparent);
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #fff, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 1.8rem;
  animation: marquee 64s linear infinite;
}

.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

.logo-card {
  display: grid;
  place-items: center;
  width: 220px;
  height: 106px;
  padding: 0.6rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.logo-card img {
  max-width: 100%;
  max-height: 78px;
  object-fit: contain;
  filter: saturate(.95);
}

.site-footer {
  color: rgba(255, 255, 255, 0.8);
  background: var(--brand-ink);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 2rem;
  padding: clamp(52px, 7vw, 82px) 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.footer-main h3 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-main p {
  color: rgba(255, 255, 255, 0.74);
}

.footer-links {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.86rem;
}

.social-links {
  display: flex;
  gap: 0.7rem;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
}

.promoter-link {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin-top: 1rem;
  padding: .65rem .8rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .06);
}

.promoter-link span {
  color: rgba(255, 255, 255, .7);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.promoter-link img {
  width: 96px;
  max-height: 42px;
  object-fit: contain;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.2rem, 2.4vw, 1.8rem);
  border: 1px solid rgba(18, 55, 42, .12);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 86% 16%, rgba(243, 210, 140, .2), transparent 30%),
    #fff;
  box-shadow: var(--shadow-soft);
}

.contact-card.featured {
  background:
    radial-gradient(circle at 86% 14%, rgba(0, 139, 210, .12), transparent 32%),
    linear-gradient(135deg, #fff, #f7f3e8);
}

.contact-card h2 {
  margin-bottom: .8rem;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.contact-methods {
  display: grid;
  gap: .45rem;
  margin-top: .2rem;
}

.contact-methods a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: max-content;
  padding: .12rem 0;
  border-bottom: 1px solid rgba(18, 55, 42, .28);
  color: var(--brand-deep);
  font-size: clamp(.92rem, 1.15vw, 1.02rem);
  font-weight: 800;
  letter-spacing: .01em;
}

.promoter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid rgba(18, 55, 42, .12);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow-soft);
}

.promoter-panel h2 {
  margin-bottom: .75rem;
}

.promoter-logo-card {
  display: grid;
  place-items: center;
  min-height: 170px;
  padding: 1.4rem;
  border-radius: 26px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(18, 55, 42, .08);
}

.promoter-logo-card img {
  max-height: 120px;
  object-fit: contain;
}

/* FIAX premium light layer */
body {
  background:
    radial-gradient(circle at 8% 8%, rgba(243, 210, 140, .16), transparent 26%),
    radial-gradient(circle at 94% 6%, rgba(0, 139, 210, .09), transparent 28%),
    #fff;
}

.page-hero.light-hero {
  background:
    linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(247,243,232,.84) 42%, rgba(18,55,42,.35) 100%),
    url("../images/espana-italia-fiax.png") center / cover;
}

.page-hero.light-hero .container {
  max-width: 1020px;
  border-color: rgba(18, 55, 42, .12);
  background:
    radial-gradient(circle at 90% 12%, rgba(243, 210, 140, .24), transparent 34%),
    rgba(255, 255, 255, .92);
  box-shadow: 0 24px 80px rgba(18, 55, 42, .12);
}

.page-hero.light-hero h1 {
  color: var(--brand-deep);
  text-shadow: none;
}

.page-hero.light-hero p {
  color: rgba(30, 43, 37, .82);
}

.page-hero.light-hero .eyebrow {
  color: var(--brand-primary);
}

.page-hero.light-hero .btn.ghost {
  border-color: rgba(18, 55, 42, .2);
  color: var(--brand-deep);
}

.page-hero.light-hero .btn.ghost:hover {
  color: #fff;
}

.center-row {
  justify-content: center;
}

.media-card,
.honor-photo {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow);
}

.media-card img,
.honor-photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.honor-guest {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.reverse-honor {
  grid-template-columns: minmax(320px, .95fr) minmax(0, 1.05fr);
}

.honor-copy {
  padding: clamp(1.2rem, 2.5vw, 2rem);
}

.honor-copy h2 {
  margin-bottom: 1rem;
  color: var(--brand-deep);
}

.honor-copy p {
  color: rgba(30, 43, 37, .82);
  font-size: clamp(0.96rem, 1.14vw, 1.02rem);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.pricing-card,
.term-card {
  padding: clamp(1.2rem, 2.5vw, 1.8rem);
  border: 1px solid rgba(18, 55, 42, .12);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 10%, rgba(243, 210, 140, .18), transparent 30%),
    #fff;
  box-shadow: var(--shadow-soft);
}

.pricing-card.featured {
  border-color: rgba(201, 154, 67, .34);
  background:
    radial-gradient(circle at 88% 12%, rgba(243, 210, 140, .28), transparent 32%),
    linear-gradient(135deg, #fff, #fbf8ef);
}

.pricing-card.soon-price {
  background:
    radial-gradient(circle at 88% 10%, rgba(0, 139, 210, .12), transparent 30%),
    #fff;
}

.wide-card {
  grid-column: 1 / -1;
}

.price-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.price-top .eyebrow {
  margin-bottom: 0;
}

.price-top strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: max-content;
  padding: .5rem .75rem;
  border-radius: 999px;
  background: var(--brand-deep);
  color: var(--brand-gold-soft);
  font-size: .95rem;
}

.pricing-card h3,
.term-card h3 {
  margin-bottom: .75rem;
}

.small-note {
  margin-top: 1rem;
  padding: .9rem 1rem;
  border-left: 3px solid var(--brand-gold);
  border-radius: 14px;
  background: rgba(243, 210, 140, .16);
  color: rgba(30, 43, 37, .82);
  font-weight: 700;
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  margin-top: 1.2rem;
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid rgba(18, 55, 42, .12);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 92% 20%, rgba(0, 139, 210, .1), transparent 30%),
    linear-gradient(135deg, #fff, #f7f3e8);
  box-shadow: var(--shadow-soft);
}

.contact-band h2 {
  margin-bottom: .6rem;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.contact-band p {
  margin-bottom: 0;
}

.partner-grid {
  align-items: stretch;
}

.partner-grid .card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.partner-grid .card .btn,
.partner-grid .hotel-slots {
  margin-top: auto;
}

.featured-hotel {
  background:
    radial-gradient(circle at 92% 14%, rgba(0, 139, 210, .12), transparent 32%),
    linear-gradient(135deg, #fff, #f7f3e8);
}

.hotel-logo-link {
  display: grid;
  place-items: center;
  width: fit-content;
  min-height: 0;
  margin: .7rem 0 .65rem;
  padding: .1rem 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hotel-logo-link img {
  width: 142px;
  max-height: 40px;
  object-fit: contain;
  display: block;
}

.promo-code {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  width: fit-content;
  margin: .05rem 0 .75rem;
  padding: .3rem .55rem;
  border-radius: 999px;
  background: rgba(0, 139, 210, .09);
  color: var(--brand-deep);
  font-size: .78rem;
  font-weight: 800;
}

.hotel-slots {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .45rem;
  margin-top: 1rem;
}

.hotel-slots span,
.hotel-slots a {
  display: grid;
  place-items: center;
  min-height: 48px;
  border: 1px dashed rgba(18, 55, 42, .2);
  border-radius: 14px;
  background: rgba(255, 255, 255, .76);
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
  text-align: center;
}

.hotel-slots a {
  border-style: solid;
  border-color: rgba(0, 139, 210, .28);
  background: rgba(0, 139, 210, .08);
  color: var(--brand-blue);
}

.program-days {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.program-day-card {
  min-height: 320px;
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid rgba(18, 55, 42, .12);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 85% 12%, rgba(243, 210, 140, .24), transparent 32%),
    linear-gradient(135deg, #fff, #fbf8ef);
  box-shadow: var(--shadow-soft);
}

.program-day-card span {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: .45rem .72rem;
  border-radius: 999px;
  background: var(--surface-mint);
  color: var(--brand-primary);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .76rem;
}

.program-day-card h3 {
  font-size: clamp(1.45rem, 2.8vw, 2.3rem);
  color: var(--brand-deep);
}

.program-soon {
  margin-bottom: 0;
}

.visitor-cta {
  background:
    radial-gradient(circle at 18% 14%, rgba(243, 210, 140, .3), transparent 32%),
    linear-gradient(135deg, var(--brand-deep), #164d3b);
}

.sponsorship-pricing {
  max-width: 980px;
  margin-inline: auto;
}

@media (max-width: 1080px) {
  .honor-guest,
  .reverse-honor,
  .pricing-grid,
  .terms-grid,
  .contact-grid,
  .promoter-panel,
  .program-days {
    grid-template-columns: 1fr;
  }

  .wide-card {
    grid-column: auto;
  }

  .contact-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .page-hero.light-hero .container {
    padding: 1.2rem;
  }

  .price-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .hotel-slots {
    grid-template-columns: 1fr;
  }

  .media-card img,
  .honor-photo img {
    min-height: 240px;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1080px) {
  .main-nav,
  .header-actions .btn {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav.is-open {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    gap: 0;
    padding: 1rem 20px 1.4rem;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-soft);
  }

  .main-nav.is-open a {
    padding: 1rem;
    border-bottom: 1px solid rgba(18, 55, 42, 0.08);
  }

  .hero-inner,
  .split,
  .split.reverse,
  .truth-panel,
  .gastronomy-panel,
  .form-layout,
  .map-shell {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 560px;
  }

  .metric-strip,
  .benefit-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid.four,
  .grid.three,
  .category-grid,
  .b2b-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 76px;
  }

  .container {
    width: min(100% - 28px, var(--max));
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand-title {
    font-size: 0.72rem;
  }

  .brand-subtitle {
    font-size: 0.82rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 48px;
  }

  .metric-strip,
  .grid.two,
  .grid.three,
  .grid.four,
  .category-grid,
  .benefit-row,
  .b2b-flow,
  .international-map,
  .footer-main,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .bridge {
    min-height: 76px;
  }

  .bridge span {
    transform: rotate(90deg);
  }

  .timeline-item,
  .program-card {
    grid-template-columns: 1fr;
  }

  .press-list,
  .sponsor-highlight {
    grid-template-columns: 1fr;
  }

  .truth-panel {
    text-align: left;
  }

  .hero-title-lines .blue {
    font-size: .52em;
  }

  .hero-title-lines .future {
    font-size: .82em;
  }

  .social-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .collaborators-header,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .logo-card {
    width: 180px;
    height: 92px;
  }
}
