@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Google+Sans:wght@400;500;700&display=swap');

/* M3 Color Tokens */
:root {
  --md-sys-color-primary: #0B57D0;
  --md-sys-color-on-primary: #FFFFFF;
  --md-sys-color-primary-container: #D3E3FD;
  --md-sys-color-on-primary-container: #041E49;
  
  --md-sys-color-secondary: #00639B;
  --md-sys-color-secondary-container: #C2E7FF;
  --md-sys-color-on-secondary-container: #001D35;

  --md-sys-color-tertiary: #146C2E;
  --md-sys-color-tertiary-container: #C4EED0;
  --md-sys-color-on-tertiary-container: #00210B;

  --md-sys-color-background: #F8F9FA;
  --md-sys-color-on-background: #1F1F1F;
  
  --md-sys-color-surface: #FFFFFF;
  --md-sys-color-on-surface: #1F1F1F;
  --md-sys-color-surface-variant: #E1E3E1;
  --md-sys-color-on-surface-variant: #444746;
  
  --md-sys-color-outline: #747775;
  --md-sys-color-outline-variant: #C4C7C5;

  --md-elevation-1: 0px 1px 2px 0px rgba(0,0,0,0.3), 0px 1px 3px 1px rgba(0,0,0,0.15);
  --md-elevation-2: 0px 1px 2px 0px rgba(0,0,0,0.3), 0px 2px 6px 2px rgba(0,0,0,0.15);
  --md-elevation-3: 0px 1px 3px 0px rgba(0,0,0,0.3), 0px 4px 8px 3px rgba(0,0,0,0.15);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: 'Roboto', sans-serif;
  background-color: var(--md-sys-color-background);
  color: var(--md-sys-color-on-background);
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Google Sans', 'Roboto', sans-serif;
  font-weight: 500;
  color: var(--md-sys-color-on-background);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 40px;
  border-radius: 8px;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-brand-name {
  font-family: 'Google Sans', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--md-sys-color-on-background);
}

.nav-brand-city {
  font-size: 11px;
  font-weight: 500;
  color: var(--md-sys-color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--md-sys-color-on-surface-variant);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--md-sys-color-primary);
}

.nav-cta {
  background-color: var(--md-sys-color-primary);
  color: var(--md-sys-color-on-primary) !important;
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 500;
  transition: background-color 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  background-color: #0842A0;
  box-shadow: var(--md-elevation-1);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--md-sys-color-primary-container);
  color: var(--md-sys-color-on-primary-container);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px; height: 6px;
  background-color: var(--md-sys-color-primary);
  border-radius: 50%;
}

.hero h1 {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--md-sys-color-on-background);
}

.hero h1 .accent {
  color: var(--md-sys-color-primary);
}

.hero h1 .accent-verde {
  color: var(--md-sys-color-tertiary);
}

.hero-sub {
  font-size: 18px;
  color: var(--md-sys-color-on-surface-variant);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background-color: var(--md-sys-color-primary);
  color: var(--md-sys-color-on-primary);
  padding: 12px 32px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #0842A0;
  box-shadow: var(--md-elevation-1);
}

.btn-secondary {
  background-color: transparent;
  color: var(--md-sys-color-primary);
  border: 1px solid var(--md-sys-color-outline);
  padding: 12px 32px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: rgba(11, 87, 208, 0.08);
  border-color: var(--md-sys-color-primary);
}

/* POS DEMO (Material Style) */
.pos-demo {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 360px;
  background-color: var(--md-sys-color-surface);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--md-elevation-3);
  display: none;
}

@media (min-width: 1100px) {
  .pos-demo { display: block; }
}

.pos-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--md-sys-color-surface-variant);
}

.pos-title {
  font-weight: 500;
  font-size: 14px;
  color: var(--md-sys-color-on-surface);
}

.pos-status {
  background-color: var(--md-sys-color-tertiary-container);
  color: var(--md-sys-color-on-tertiary-container);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
}

.pos-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.pos-item {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.pos-item-name { color: var(--md-sys-color-on-surface-variant); }
.pos-item-price { color: var(--md-sys-color-on-surface); font-weight: 500; }

.pos-total {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--md-sys-color-surface-variant);
  font-weight: 700;
  font-size: 18px;
}

.pos-btn {
  width: 100%;
  margin-top: 24px;
  background-color: var(--md-sys-color-tertiary);
  color: #FFF;
  border: none;
  padding: 12px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  font-family: 'Google Sans', sans-serif;
  transition: background-color 0.2s;
}

.pos-btn:hover {
  background-color: #0F5223;
}

/* ── PROPUESTA DE VALOR ── */
.propuesta {
  background-color: var(--md-sys-color-surface);
  padding: 64px 24px;
  border-top: 1px solid var(--md-sys-color-surface-variant);
  border-bottom: 1px solid var(--md-sys-color-surface-variant);
}

.propuesta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  text-align: center;
}

.prop-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.prop-icon {
  width: 64px; height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.prop-icon-cyan { background-color: var(--md-sys-color-primary-container); }
.prop-icon-verde { background-color: var(--md-sys-color-tertiary-container); }
.prop-icon-naranja { background-color: #FFDCC2; }
.prop-icon-purple { background-color: #EADDFF; }

.prop-num {
  font-family: 'Google Sans', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--md-sys-color-primary);
  line-height: 1;
}

.prop-num.verde { color: var(--md-sys-color-tertiary); }
.prop-num.naranja { color: #C04A00; }

.prop-label {
  font-size: 15px;
  color: var(--md-sys-color-on-surface-variant);
  font-weight: 500;
}

/* ── CONTENEDOR GENERAL ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

.section-tag {
  font-size: 14px;
  font-weight: 500;
  color: var(--md-sys-color-primary);
  margin-bottom: 12px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-sub {
  font-size: 16px;
  color: var(--md-sys-color-on-surface-variant);
  max-width: 600px;
  margin-bottom: 48px;
}

/* ── SERVICIOS PRINCIPALES ── */
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.servicio-card {
  background-color: var(--md-sys-color-surface);
  border: 1px solid var(--md-sys-color-outline-variant);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.servicio-card:hover {
  box-shadow: var(--md-elevation-2);
  transform: translateY(-2px);
}

.serv-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.serv-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.serv-cyan { background-color: var(--md-sys-color-primary-container); }
.serv-verde { background-color: var(--md-sys-color-tertiary-container); }
.serv-naranja { background-color: #FFDCC2; }

.serv-badge {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 100px;
}

.serv-badge-cyan { color: var(--md-sys-color-primary); background-color: var(--md-sys-color-primary-container); }
.serv-badge-verde { color: var(--md-sys-color-tertiary); background-color: var(--md-sys-color-tertiary-container); }
.serv-badge-naranja { color: #A03D00; background-color: #FFDCC2; }

.serv-title {
  font-size: 22px;
  font-weight: 500;
  color: var(--md-sys-color-on-surface);
}

.serv-desc {
  font-size: 15px;
  color: var(--md-sys-color-on-surface-variant);
}

.serv-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  margin-top: 12px;
  margin-bottom: 16px;
}

.serv-list li {
  font-size: 14px;
  color: var(--md-sys-color-on-surface-variant);
  padding-left: 24px;
  position: relative;
}

.serv-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--md-sys-color-primary);
  font-weight: bold;
}

.servicio-web .serv-list li::before { color: var(--md-sys-color-tertiary); }
.servicio-android .serv-list li::before { color: #A03D00; }
.servicio-estandar .serv-list li::before { color: #6750A4; }

.serv-tag {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--md-sys-color-primary);
  background-color: var(--md-sys-color-primary-container);
  padding: 8px 16px;
  border-radius: 100px;
  margin-top: auto;
  align-self: flex-start;
}

/* ── PUBLICIDAD / DIFERENCIADOR ── */
.diferenciador {
  background-color: var(--md-sys-color-secondary-container);
  color: var(--md-sys-color-on-secondary-container);
  border-radius: 32px;
  padding: 48px;
  margin-bottom: 48px;
}

.diferenciador-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.dif-headline {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

.dif-headline em {
  font-style: normal;
  color: var(--md-sys-color-secondary);
}

.dif-text {
  font-size: 16px;
  margin-bottom: 24px;
  opacity: 0.9;
}

.dif-highlight {
  display: inline-block;
  background-color: var(--md-sys-color-surface);
  color: var(--md-sys-color-on-surface);
  padding: 12px 20px;
  border-radius: 16px;
  font-weight: 500;
  font-size: 15px;
}

.dif-checks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dif-check {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background-color: var(--md-sys-color-surface);
  border-radius: 20px;
}

.check-ico {
  width: 40px; height: 40px;
  background-color: var(--md-sys-color-primary-container);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.check-text strong {
  display: block;
  font-weight: 500;
  color: var(--md-sys-color-on-surface);
  margin-bottom: 4px;
}

.check-text span {
  font-size: 14px;
  color: var(--md-sys-color-on-surface-variant);
}

/* ── CARACTERÍSTICAS PRINCIPALES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background-color: var(--md-sys-color-surface);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid var(--md-sys-color-outline-variant);
}

.feat-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.feat-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--md-sys-color-on-surface);
  margin-bottom: 8px;
}

.feat-desc {
  font-size: 15px;
  color: var(--md-sys-color-on-surface-variant);
}

/* ── LOGOS CLIENTES ── */
.clientes-section {
  padding: 80px 24px;
  background-color: var(--md-sys-color-surface);
}

.clientes-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.logo-card {
  background-color: var(--md-sys-color-background);
  border-radius: 20px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.logo-emoji {
  font-size: 40px;
}

.logo-name {
  font-weight: 500;
  font-size: 15px;
  color: var(--md-sys-color-on-background);
}

.logo-type {
  font-size: 12px;
  color: var(--md-sys-color-on-surface-variant);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── TIPOS DE NEGOCIO ── */
.negocios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.negocio-tag {
  background-color: var(--md-sys-color-surface);
  border: 1px solid var(--md-sys-color-outline-variant);
  border-radius: 100px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}

/* ── PROCESO ── */
.proceso-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.paso {
  background-color: var(--md-sys-color-surface);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--md-sys-color-outline-variant);
}

.paso-num {
  font-family: 'Google Sans', sans-serif;
  font-size: 80px;
  font-weight: 700;
  color: var(--md-sys-color-surface-variant);
  position: absolute;
  top: 16px; right: 16px;
  opacity: 0.5;
  line-height: 1;
}

.paso-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.paso-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--md-sys-color-on-surface);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.paso-desc {
  font-size: 15px;
  color: var(--md-sys-color-on-surface-variant);
  position: relative;
  z-index: 1;
}

/* ── CTA FINAL & FORM ── */
.cta-section {
  padding: 80px 24px;
  background-color: var(--md-sys-color-primary-container);
  color: var(--md-sys-color-on-primary-container);
}

.cta-box {
  max-width: 1200px;
  margin: 0 auto;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.cta-box h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--md-sys-color-on-primary-container);
  line-height: 1.1;
}

.cta-box h2 span {
  color: var(--md-sys-color-primary);
}

.cta-box p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.9;
}

/* ── PREMIUM FORM DESIGN ── */
.contact-form {
  background-color: #FFFFFF;
  padding: 48px 40px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0,0,0,0.05);
}

.contact-form::before {
  content: 'Formulario de Contacto';
  display: block;
  font-family: 'Google Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 32px;
  text-align: center;
}

.form-row {
  display: flex;
  gap: 24px;
}

.form-group {
  margin-bottom: 24px;
  flex: 1;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #4B5563;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background-color: #F9FAFB;
  border: 1px solid #D1D5DB;
  border-radius: 12px;
  color: #1F2937;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9CA3AF;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  background-color: #FFFFFF;
  border-color: #9CA3AF;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background-color: #FFFFFF;
  border-color: var(--md-sys-color-primary);
  box-shadow: 0 0 0 4px rgba(11, 87, 208, 0.15);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%231F2937%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 16px top 50%;
  background-size: 12px auto;
  padding-right: 40px;
}

.form-group textarea {
  resize: vertical;
}

.w-100 {
  width: 100%;
}

/* ── FOOTER ── */
footer {
  padding: 32px 24px;
  text-align: center;
  background-color: var(--md-sys-color-surface);
  border-top: 1px solid var(--md-sys-color-outline-variant);
}

footer p {
  font-size: 14px;
  color: var(--md-sys-color-on-surface-variant);
}

footer span {
  color: var(--md-sys-color-primary);
  font-weight: 500;
}

/* ── ANIMACIONES ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.2, 0, 0, 1), transform 0.8s cubic-bezier(0.2, 0, 0, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 200;
}
.hamburger span {
  width: 24px; height: 2px;
  background-color: var(--md-sys-color-on-background);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background-color: var(--md-sys-color-surface);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Google Sans', sans-serif;
  font-size: 24px;
  text-decoration: none;
  color: var(--md-sys-color-on-surface);
  font-weight: 500;
}
.mobile-menu .mobile-cta {
  background-color: var(--md-sys-color-primary);
  color: #FFF;
  padding: 16px 32px;
  border-radius: 100px;
}

@media (max-width: 900px) {
  .cta-grid, .diferenciador-grid { grid-template-columns: 1fr; gap: 40px; }
  .pos-demo { display: none; }
}

@media (max-width: 768px) {
  nav .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 40px; }
  .section-title { font-size: 32px; }
  .dif-headline { font-size: 32px; }
  .cta-box h2 { font-size: 36px; }
  .form-row { flex-direction: column; gap: 0; }
  .contact-form { padding: 24px; }
  .propuesta-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .propuesta-inner { grid-template-columns: 1fr; }
  .hero { padding-top: 100px; }
}

/* ── GALERÍA ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.gallery-item {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--md-elevation-1);
  transition: transform 0.3s, box-shadow 0.3s;
  aspect-ratio: 4 / 3;
  background-color: var(--md-sys-color-surface-variant);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--md-elevation-3);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── SPONSOR LOGOS ── */
.sponsor-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 48px;
  margin-top: 40px;
}

.sponsor-logo {
  max-width: 180px;
  max-height: 90px;
  object-fit: contain;
  filter: grayscale(100%) opacity(60%);
  transition: filter 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.sponsor-logo:hover {
  filter: grayscale(0%) opacity(100%);
  transform: scale(1.05);
}

/* ── NEW HERO BANNER ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hero-banner-section {
  padding: 120px 24px 40px;
  background-color: var(--md-sys-color-background);
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-banner-container {
  position: relative;
  max-width: 900px; /* Reduced width to prevent banner from being too tall */
  width: 100%;
  margin: 0 auto;
  border-radius: 24px;
}

.hero-banner-img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: var(--md-elevation-3);
  display: block;
}

.hero-banner-cta {
  position: absolute;
  bottom: 8%;
  right: 8%;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero-banner-section {
    min-height: auto;
    padding-top: 120px;
  }
  .hero-banner-cta {
    position: relative;
    bottom: auto;
    right: auto;
    justify-content: center;
    margin-top: 32px;
  }
}
