@import '../../node_modules/@splidejs/splide/dist/css/splide-core.min.css';
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: "Source Sans 3", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625;
  color: #374151;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  color: #111827;
  letter-spacing: -0.025em;
}

h1 {
  font-size: 2.25rem;
  font-weight: 800;
}
@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  h1 {
    font-size: 3.75rem;
  }
}

h2 {
  font-size: 1.875rem;
}
@media (min-width: 768px) {
  h2 {
    font-size: 2.25rem;
  }
}

h3 {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  h3 {
    font-size: 1.875rem;
  }
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: #B91C1C;
  text-decoration: none;
  transition: color 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
a:hover {
  color: #DC2626;
}

strong, b {
  font-weight: 600;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: inherit;
  color: inherit;
  margin: 0;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

ul, ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

::selection {
  background-color: #B91C1C;
  color: #FFFFFF;
}

:focus-visible {
  outline: 2px solid #B91C1C;
  outline-offset: 2px;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #F3F4F6;
}

::-webkit-scrollbar-thumb {
  background: #9CA3AF;
  border-radius: 9999px;
  border: 2px solid #F3F4F6;
}
::-webkit-scrollbar-thumb:hover {
  background: #6B7280;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #9CA3AF #F3F4F6;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.admin-bar .site-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}
.admin-bar .header-spacer {
  height: 106px;
}
@media (min-width: 1024px) {
  .admin-bar .header-spacer {
    height: 122px;
  }
}
@media screen and (max-width: 782px) {
  .admin-bar .header-spacer {
    height: 120px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid transparent;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94), height 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn:active::before {
  width: 300px;
  height: 300px;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.btn svg {
  width: 1.25em;
  height: 1.25em;
  flex-shrink: 0;
  transition: transform 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn:hover svg {
  transform: translateX(3px);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  .btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
  }
}

.btn-primary {
  background: linear-gradient(135deg, #B91C1C 0%, #991B1B 100%);
  color: #FFFFFF;
  border-color: #B91C1C;
  box-shadow: 0 10px 40px -10px rgba(185, 28, 28, 0.4);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
  transform: translateY(-2px);
  box-shadow: 0 15px 40px -10px rgba(185, 28, 28, 0.5);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: #B91C1C;
  border-color: #B91C1C;
}
.btn-secondary:hover {
  background: #B91C1C;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 40px -10px rgba(185, 28, 28, 0.4);
}

.btn-accent {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #111827;
  border-color: #F59E0B;
  box-shadow: 0 10px 40px -10px rgba(245, 158, 11, 0.4);
}
.btn-accent:hover {
  background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
  transform: translateY(-2px);
  box-shadow: 0 15px 40px -10px rgba(245, 158, 11, 0.5);
  color: #FFFFFF;
}

.btn-white {
  background: #FFFFFF;
  color: #B91C1C;
  border-color: #FFFFFF;
}
.btn-white:hover {
  background: #F3F4F6;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.btn-outline-white {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: #374151;
  border-color: transparent;
}
.btn-ghost:hover {
  background: #F3F4F6;
  color: #B91C1C;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.btn-group.btn-group-center {
  justify-content: center;
}

.btn-icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
}
.btn-icon svg {
  width: 24px;
  height: 24px;
}
.btn-icon:hover svg {
  transform: scale(1.1);
}
.btn-icon.btn-icon-sm {
  width: 40px;
  height: 40px;
}
.btn-icon.btn-icon-sm svg {
  width: 20px;
  height: 20px;
}
.btn-icon.btn-icon-lg {
  width: 56px;
  height: 56px;
}
.btn-icon.btn-icon-lg svg {
  width: 28px;
  height: 28px;
}

.scroll-top-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  background: #B91C1C;
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 300;
}
.scroll-top-btn svg {
  width: 24px;
  height: 24px;
  transition: transform 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scroll-top-btn:hover {
  background: #DC2626;
  transform: translateY(-2px);
}
.scroll-top-btn:hover svg {
  transform: translateY(-3px);
}
.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 767px) {
  .scroll-top-btn {
    bottom: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
  }
}

.how-we-help {
  position: relative;
  background: #FFFFFF;
  overflow: hidden;
}
.how-we-help::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #B91C1C, #F59E0B, #B91C1C);
}

.help-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .help-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.help-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  border: 1px solid #E5E7EB;
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}
.help-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(185, 28, 28, 0.02), rgba(245, 158, 11, 0.02));
  opacity: 0;
  transition: opacity 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.help-card:hover {
  transform: translateY(-8px);
  border-color: #D1D5DB;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.help-card:hover::before {
  opacity: 1;
}
.help-card:hover .help-card-icon {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, #B91C1C, #DC2626);
}
.help-card:hover .help-card-icon svg {
  color: #FFFFFF;
}
.help-card:hover .help-card-title {
  color: #B91C1C;
}

.help-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F3F4F6, #F9FAFB);
  border-radius: 16px;
  transition: all 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 1;
}
.help-card-icon svg {
  width: 40px;
  height: 40px;
  color: #B91C1C;
  transition: color 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.help-card-icon::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 2px dashed #E5E7EB;
  border-radius: 16px;
  opacity: 0;
  transition: opacity 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.help-card:hover .help-card-icon::after {
  opacity: 1;
}

.help-card-title {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
  transition: color 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 1;
}

.help-card-description {
  font-size: 1rem;
  color: #4B5563;
  line-height: 1.625;
  position: relative;
  z-index: 1;
}

.help-card-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F3F4F6;
  border-radius: 50%;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #9CA3AF;
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.help-card:hover .help-card-number {
  background: #F59E0B;
  color: #111827;
}

.news-card {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #E5E7EB;
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}
.news-card:hover .news-card-image img {
  transform: scale(1.05);
}
.news-card:hover .news-card-title a {
  color: #B91C1C;
}

.news-card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.news-card-image .news-card-date {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #FFFFFF;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #374151;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.news-card-image.no-image {
  background: linear-gradient(135deg, #F3F4F6, #E5E7EB);
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-card-image.no-image svg {
  width: 48px;
  height: 48px;
  color: #9CA3AF;
}

.news-card-content {
  padding: 1.5rem;
}

.news-card-title {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
.news-card-title a {
  color: #111827;
  text-decoration: none;
  transition: color 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.news-card-excerpt {
  font-size: 1rem;
  color: #4B5563;
  line-height: 1.625;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #B91C1C;
  text-decoration: none;
  transition: gap 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.news-card-link svg {
  width: 16px;
  height: 16px;
  transition: transform 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.news-card-link:hover {
  gap: 0.75rem;
}
.news-card-link:hover svg {
  transform: translateX(3px);
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.feature-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #B91C1C, #F59E0B);
  transform: scaleX(0);
  transition: transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.feature-card:hover::before {
  transform: scaleX(1);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #B91C1C;
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.site-header.is-fixed {
  background: rgba(153, 27, 27, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}
.site-header.is-fixed .header-inner {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.site-header.is-fixed .site-logo img {
  height: 40px;
}
.site-header.is-fixed .logo-white {
  display: block;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  transition: padding 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (min-width: 1024px) {
  .header-inner {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}

.site-logo {
  flex-shrink: 0;
}
.site-logo a {
  display: block;
  transition: opacity 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.site-logo a:hover {
  opacity: 0.9;
}
.site-logo img {
  height: 50px;
  width: auto;
  transition: height 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  max-height: 60px;
}
@media (min-width: 1024px) {
  .site-logo img {
    height: 60px;
  }
}

.main-nav {
  display: none;
}
@media (min-width: 1024px) {
  .main-nav {
    display: block;
  }
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  border-radius: 8px;
  transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #F59E0B;
  border-radius: 9999px;
  transform: translateX(-50%);
  transition: width 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav-link:hover, .nav-link.active {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
}
.nav-link:hover::after, .nav-link.active::after {
  width: calc(100% - 2rem);
}
.nav-link.active {
  background: rgba(255, 255, 255, 0.15);
}

.header-cta {
  display: none;
}
@media (min-width: 1024px) {
  .header-cta {
    display: block;
  }
}
.header-cta .btn {
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
}

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}
.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}
.mobile-menu-toggle .hamburger {
  width: 22px;
  height: 16px;
  position: relative;
}
.mobile-menu-toggle .hamburger span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #FFFFFF;
  border-radius: 9999px;
  transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mobile-menu-toggle .hamburger span:nth-child(1) {
  top: 0;
}
.mobile-menu-toggle .hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.mobile-menu-toggle .hamburger span:nth-child(3) {
  bottom: 0;
}
.mobile-menu-toggle.active .hamburger span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.mobile-menu-toggle.active .hamburger span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.mobile-menu-toggle.active .hamburger span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 380px;
  background: linear-gradient(180deg, #991B1B 0%, #7F1D1D 100%);
  padding: 5rem 1.5rem 1.5rem;
  transform: translateX(100%);
  transition: transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 500;
  overflow-y: auto;
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav .mobile-nav-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mobile-nav .mobile-nav-close svg {
  width: 24px;
  height: 24px;
  color: #FFFFFF;
}
.mobile-nav .mobile-nav-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.mobile-nav-list {
  margin-bottom: 2rem;
}

.mobile-nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link {
  display: block;
  padding: 1rem 0;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mobile-nav-link:hover, .mobile-nav-link.active {
  color: #F59E0B;
  padding-left: 0.5rem;
}

.mobile-nav-cta {
  margin-top: 1.5rem;
}
.mobile-nav-cta .btn {
  width: 100%;
  justify-content: center;
}

.mobile-nav-contact {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-nav-contact p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.mobile-nav-contact p a {
  color: #FFFFFF;
}
.mobile-nav-contact p a:hover {
  color: #F59E0B;
}

.mobile-nav-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.mobile-nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #FFFFFF;
  transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mobile-nav-social a svg {
  width: 20px;
  height: 20px;
}
.mobile-nav-social a:hover {
  background: #F59E0B;
  color: #111827;
  transform: translateY(-2px);
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 400;
}
.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.header-spacer {
  height: 74px;
}
@media (min-width: 1024px) {
  .header-spacer {
    height: 90px;
  }
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #B91C1C 0%, #991B1B 50%, #7F1D1D 100%);
  overflow: hidden;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .hero {
    min-height: 85vh;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: -20%;
  width: 80%;
  height: 100%;
  background: linear-gradient(-45deg, transparent 0%, transparent 40%, rgba(127, 29, 29, 0.3) 40%, rgba(127, 29, 29, 0.3) 45%, transparent 45%, transparent 50%, rgba(127, 29, 29, 0.2) 50%, rgba(127, 29, 29, 0.2) 55%, transparent 55%);
  pointer-events: none;
  z-index: 2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cpath fill='%23ffffff' fill-opacity='0.03' d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9z'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 3;
}

.hero-bg-image {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  background-image: url("../images/photos/bg-hero.png");
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  z-index: 1;
  animation: heroBgPan 30s ease-in-out infinite alternate;
  will-change: transform;
}
.hero-bg-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(127, 29, 29, 0.4) 100%);
}

@keyframes heroBgPan {
  0% {
    transform: scale(1) translate(0, 0);
  }
  25% {
    transform: scale(1.05) translate(-1%, 1%);
  }
  50% {
    transform: scale(1.08) translate(1%, -1%);
  }
  75% {
    transform: scale(1.05) translate(-0.5%, -0.5%);
  }
  100% {
    transform: scale(1) translate(1%, 0.5%);
  }
}
.hero-inner {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
  }
}

.hero-content {
  text-align: center;
}
@media (min-width: 1024px) {
  .hero-content {
    text-align: left;
  }
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #FCD34D;
  margin-bottom: 1.5rem;
  animation: slideUp 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-label svg {
  width: 16px;
  height: 16px;
  color: #F59E0B;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: slideUp 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms backwards;
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}
.hero-title .highlight {
  display: inline;
  position: relative;
  color: #FCD34D;
}
.hero-title .highlight::after {
  content: "";
  position: absolute;
  bottom: -0.03em;
  left: 0;
  right: 0;
  height: 0.12em;
  background: #F59E0B;
  border-radius: 9999px;
  transform: scaleX(0);
  transform-origin: left;
  animation: scaleIn 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 600ms forwards;
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.625;
  margin-bottom: 2rem;
  max-width: 550px;
  animation: slideUp 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 200ms backwards;
}
@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .hero-description {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 1023px) {
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: slideUp 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 300ms backwards;
}
@media (max-width: 1023px) {
  .hero-buttons {
    justify-content: center;
  }
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  animation: fadeIn 700ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 400ms backwards;
}
@media (max-width: 1023px) {
  .hero-visual {
    display: none;
  }
}

.hero-logo {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1280px) {
  .hero-logo {
    width: 380px;
    height: 380px;
  }
}
.hero-logo img {
  max-width: 85%;
  max-height: 85%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.3));
  animation: float 6s ease-in-out infinite;
}
.hero-logo::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(245, 158, 11, 0.2);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}
.hero-logo::after {
  content: "";
  position: absolute;
  top: -5%;
  right: -5%;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, #F59E0B 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: 0.5;
  animation: float 4s ease-in-out infinite reverse;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.875rem;
  text-decoration: none;
  animation: fadeIn 700ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 800ms backwards;
  transition: color 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-scroll:hover {
  color: #FFFFFF;
}
.hero-scroll:hover .scroll-icon {
  transform: translateY(5px);
}
.hero-scroll.dark {
  color: rgba(0, 0, 0, 0.6);
}
.hero-scroll.dark:hover {
  color: #000000;
}
.hero-scroll .scroll-icon {
  width: 24px;
  height: 36px;
  border: 2px solid currentColor;
  border-radius: 9999px;
  position: relative;
  transition: transform 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-scroll .scroll-icon::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: currentColor;
  border-radius: 9999px;
  animation: scrollBounce 2s ease-in-out infinite;
}
@media (max-width: 767px) {
  .hero-scroll {
    display: none;
  }
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) translateY(10px);
    opacity: 0.5;
  }
}
@keyframes scaleIn {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
.hero-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
}
@media (max-width: 767px) {
  .hero-stats-bar {
    display: none;
  }
}

.hero-stats-inner {
  display: flex;
  justify-content: center;
  gap: 4rem;
}

.hero-stat {
  text-align: center;
}
.hero-stat .number {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
}
.hero-stat .label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer {
  background: linear-gradient(180deg, #1F2937 0%, #111827 100%);
  color: #D1D5DB;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  width: 120%;
  height: 6px;
  background: linear-gradient(90deg, #B91C1C, #F59E0B, #B91C1C);
  transform: skewX(-45deg);
}

.footer-main {
  padding-top: 4rem;
  padding-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer-main {
    padding-top: 5rem;
    padding-bottom: 4rem;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    gap: 3rem;
  }
}

@media (min-width: 768px) {
  .footer-col.footer-about {
    padding-right: 2rem;
  }
}

.footer-logo {
  margin-bottom: 1.5rem;
}
.footer-logo img {
  height: 60px;
  width: auto;
}

.footer-description {
  font-size: 1rem;
  line-height: 1.625;
  color: #9CA3AF;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #9CA3AF;
  transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.footer-social a svg {
  width: 20px;
  height: 20px;
}
.footer-social a:hover {
  background: #B91C1C;
  border-color: #B91C1C;
  color: #FFFFFF;
  transform: translateY(-3px);
}
.footer-social a.facebook:hover {
  background: #1877F2;
  border-color: #1877F2;
}
.footer-social a.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: #dc2743;
}
.footer-social a.youtube:hover {
  background: #FF0000;
  border-color: #FF0000;
}

.footer-heading {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #F59E0B;
  border-radius: 9999px;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #9CA3AF;
  font-size: 1rem;
  transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.footer-nav a::before {
  content: "";
  width: 0;
  height: 2px;
  background: #F59E0B;
  border-radius: 9999px;
  transition: width 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.footer-nav a:hover {
  color: #FFFFFF;
  transform: translateX(5px);
}
.footer-nav a:hover::before {
  width: 12px;
}

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.footer-contact .icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #F59E0B;
  margin-top: 2px;
}
.footer-contact a {
  color: #9CA3AF;
  transition: color 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.footer-contact a:hover {
  color: #FFFFFF;
}
.footer-contact .bank-account {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-top: 0.5rem;
}
.footer-contact .bank-account .label {
  display: block;
  font-size: 0.75rem;
  color: #F59E0B;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.footer-contact .bank-account .number {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #FFFFFF;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.copyright {
  font-size: 0.875rem;
  color: #6B7280;
}
.copyright a {
  color: #9CA3AF;
}
.copyright a:hover {
  color: #F59E0B;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.875rem;
  color: #6B7280;
  transition: color 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.footer-legal a:hover {
  color: #FFFFFF;
}

.footer-decoration {
  position: absolute;
  pointer-events: none;
}
.footer-decoration.hexagon {
  right: -100px;
  bottom: -100px;
  width: 400px;
  height: 400px;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9z'/%3E%3C/svg%3E");
}

.social-section {
  position: relative;
  background: #FFFFFF;
  text-align: center;
}

.social-content {
  max-width: 600px;
  margin: 0 auto;
}

.social-title {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .social-title {
    font-size: 1.875rem;
  }
}

.social-description {
  font-size: 1.125rem;
  color: #4B5563;
  margin-bottom: 2rem;
}

.social-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .social-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.social-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 24px;
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.social-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: currentColor;
  transform: scaleY(0);
  transition: transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.social-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}
.social-card:hover::before {
  transform: scaleY(1);
}
.social-card:hover .social-card-icon {
  transform: scale(1.1);
}
.social-card:hover .social-card-arrow {
  opacity: 1;
  transform: translateX(0);
}
.social-card--facebook {
  color: #1877F2;
}
.social-card--facebook:hover {
  box-shadow: 0 20px 40px rgba(24, 119, 242, 0.2);
}
.social-card--facebook .social-card-icon {
  background: rgba(24, 119, 242, 0.1);
  color: #1877F2;
}
.social-card--instagram {
  color: #E4405F;
}
.social-card--instagram:hover {
  box-shadow: 0 20px 40px rgba(228, 64, 95, 0.2);
}
.social-card--instagram .social-card-icon {
  background: linear-gradient(135deg, rgba(240, 148, 51, 0.1), rgba(220, 39, 67, 0.1), rgba(188, 24, 136, 0.1));
  color: #E4405F;
}
.social-card--youtube {
  color: #FF0000;
}
.social-card--youtube:hover {
  box-shadow: 0 20px 40px rgba(255, 0, 0, 0.2);
}
.social-card--youtube .social-card-icon {
  background: rgba(255, 0, 0, 0.1);
  color: #FF0000;
}

.social-card-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.social-card-icon svg {
  width: 26px;
  height: 26px;
}

.social-card-content {
  flex: 1;
  min-width: 0;
}

.social-card-title {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.25rem;
}

.social-card-desc {
  font-size: 0.875rem;
  color: #6B7280;
  margin: 0;
}

.social-card-arrow {
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: #9CA3AF;
}
.social-card-arrow svg {
  width: 20px;
  height: 20px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .social-links {
    gap: 1.5rem;
  }
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: #F3F4F6;
  border-radius: 24px;
  color: #4B5563;
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .social-link {
    width: 80px;
    height: 80px;
  }
}
.social-link svg {
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 1;
  transition: transform 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (min-width: 768px) {
  .social-link svg {
    width: 36px;
    height: 36px;
  }
}
.social-link::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: scale(0);
  border-radius: inherit;
  transition: transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.social-link:hover {
  color: #FFFFFF;
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.social-link:hover::before {
  transform: scale(1);
}
.social-link:hover svg {
  transform: scale(1.1);
}
.social-link.facebook::before {
  background: #1877F2;
}
.social-link.facebook:hover {
  box-shadow: 0 10px 30px rgba(24, 119, 242, 0.4);
}
.social-link.instagram::before {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.social-link.instagram:hover {
  box-shadow: 0 10px 30px rgba(220, 39, 67, 0.4);
}
.social-link.youtube::before {
  background: #FF0000;
}
.social-link.youtube:hover {
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
}
.social-link.twitter::before {
  background: #1DA1F2;
}
.social-link.twitter:hover {
  box-shadow: 0 10px 30px rgba(29, 161, 242, 0.4);
}
.social-link.linkedin::before {
  background: #0A66C2;
}
.social-link.linkedin:hover {
  box-shadow: 0 10px 30px rgba(10, 102, 194, 0.4);
}

.social-link-labeled {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  gap: 0.75rem;
}
.social-link-labeled .icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F3F4F6;
  border-radius: 16px;
  color: #4B5563;
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.social-link-labeled .icon svg {
  width: 28px;
  height: 28px;
}
.social-link-labeled .label {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4B5563;
  transition: color 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.social-link-labeled:hover .icon {
  transform: translateY(-4px);
}
.social-link-labeled:hover .label {
  color: #111827;
}
.social-link-labeled.facebook:hover .icon {
  background: #1877F2;
  color: #FFFFFF;
}
.social-link-labeled.instagram:hover .icon {
  background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
  color: #FFFFFF;
}
.social-link-labeled.youtube:hover .icon {
  background: #FF0000;
  color: #FFFFFF;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.share-btn svg {
  width: 18px;
  height: 18px;
}
.share-btn:hover {
  transform: translateY(-2px);
}
.share-btn.facebook {
  background: #1877F2;
}
.share-btn.facebook:hover {
  background: rgb(11.4549180328, 95.1639344262, 203.5450819672);
}
.share-btn.twitter {
  background: #1DA1F2;
}
.share-btn.twitter:hover {
  background: rgb(11.9665271967, 133.4728033473, 208.0334728033);
}
.share-btn.linkedin {
  background: #0A66C2;
}
.share-btn.linkedin:hover {
  background: rgb(7.5, 76.5, 145.5);
}
.share-btn.email {
  background: #4B5563;
}
.share-btn.email:hover {
  background: #374151;
}

.instagram-feed {
  margin-top: 3rem;
  padding: 2rem;
  background: #F9FAFB;
  border-radius: 24px;
  text-align: center;
}
.instagram-feed .feed-title {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.instagram-feed .feed-title svg {
  width: 24px;
  height: 24px;
  color: #B91C1C;
}
.instagram-feed .feed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .instagram-feed .feed-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 768px) {
  .instagram-feed .feed-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
.instagram-feed .feed-item {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: #E5E7EB;
}
.instagram-feed .feed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.instagram-feed .feed-item:hover img {
  transform: scale(1.05);
}

.sponsors-section {
  position: relative;
  background: #F9FAFB;
  overflow: hidden;
}
.sponsors-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, #E5E7EB 1px, transparent 0);
  background-size: 40px 40px;
  opacity: 0.5;
  pointer-events: none;
}

.sponsor-tier {
  position: relative;
  z-index: 1;
}
.sponsor-tier + .sponsor-tier {
  margin-top: 4rem;
}

.sponsor-tier-header {
  text-align: center;
  margin-bottom: 2rem;
}

.sponsor-tier-title {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}
.sponsor-tier-title.tier-main {
  font-size: 1.5rem;
  color: #B91C1C;
}

.sponsor-tier-subtitle {
  font-size: 1rem;
  color: #6B7280;
}

.sponsor-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .sponsor-grid {
    gap: 2rem;
  }
}
.sponsor-grid.sponsor-grid-main {
  gap: 2rem;
}
@media (min-width: 768px) {
  .sponsor-grid.sponsor-grid-main {
    gap: 3rem;
  }
}
.sponsor-grid.sponsor-grid-main .sponsor-item {
  width: 180px;
  height: 100px;
}
@media (min-width: 768px) {
  .sponsor-grid.sponsor-grid-main .sponsor-item {
    width: 220px;
    height: 120px;
  }
}
.sponsor-grid.sponsor-grid-supporters .sponsor-item {
  width: 140px;
  height: 80px;
}
@media (min-width: 768px) {
  .sponsor-grid.sponsor-grid-supporters .sponsor-item {
    width: 160px;
    height: 90px;
  }
}

.sponsor-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #E5E7EB;
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.sponsor-item:hover {
  transform: translateY(-4px);
  border-color: #D1D5DB;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.sponsor-item:hover img {
  filter: grayscale(0);
  opacity: 1;
}
.sponsor-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sponsor-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid #E5E7EB;
}

.sponsor-cta-title {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}

.sponsor-cta-description {
  font-size: 1.125rem;
  color: #4B5563;
  margin-bottom: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.sponsor-marquee {
  overflow: hidden;
  position: relative;
  padding: 2rem 0;
  background: #FFFFFF;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
}
.sponsor-marquee::before, .sponsor-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.sponsor-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #FFFFFF, transparent);
}
.sponsor-marquee::after {
  right: 0;
  background: linear-gradient(90deg, transparent, #FFFFFF);
}

.sponsor-marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 30s linear infinite;
}
.sponsor-marquee-track:hover {
  animation-play-state: paused;
}

.sponsor-marquee-item {
  flex-shrink: 0;
  width: 150px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sponsor-marquee-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.sponsor-marquee-item:hover img {
  filter: grayscale(0);
  opacity: 1;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.sponsor-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
  border: 1px solid #E5E7EB;
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.sponsor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}
.sponsor-card:hover .sponsor-card-logo img {
  filter: grayscale(0);
}

.sponsor-card-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.sponsor-card-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(50%);
  transition: filter 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sponsor-card-name {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.sponsor-card-description {
  font-size: 0.875rem;
  color: #4B5563;
}

.stats-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  background: linear-gradient(180deg, #FAFAFA 0%, rgba(254, 226, 226, 0.3) 50%, #FAFAFA 100%);
}
@media (min-width: 1024px) {
  .stats-section {
    padding: 6rem 0 8rem;
  }
}

.stats-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.stats-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 60% at 20% 0%, rgba(185, 28, 28, 0.06) 0%, transparent 50%), radial-gradient(ellipse 80% 50% at 80% 100%, rgba(245, 158, 11, 0.08) 0%, transparent 40%);
}

.stats-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: radial-gradient(circle at 1px 1px, rgba(185, 28, 28, 0.08) 1px, transparent 0);
  background-size: 32px 32px;
}

.stats-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.stats-bg-glow--left {
  top: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(254, 202, 202, 0.4);
}
.stats-bg-glow--right {
  bottom: -15%;
  right: -5%;
  width: 350px;
  height: 350px;
  background: rgba(253, 230, 138, 0.35);
}

.stats-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .stats-layout {
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
  }
}

.stats-mascot {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1023px) {
  .stats-mascot {
    order: -1;
    max-width: 280px;
    margin: 0 auto;
  }
}

.stats-mascot-image {
  position: relative;
  z-index: 2;
}
.stats-mascot-image img {
  width: 100%;
  max-width: 320px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(185, 28, 28, 0.15));
  animation: mascotFloat 5s ease-in-out infinite;
}
@media (min-width: 1024px) {
  .stats-mascot-image img {
    max-width: 380px;
  }
}

.stats-mascot-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  height: 85%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, rgba(185, 28, 28, 0.08) 40%, transparent 70%);
  border-radius: 50%;
  filter: blur(30px);
  z-index: 1;
  animation: mascotGlow 4s ease-in-out infinite alternate;
}

@keyframes mascotFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes mascotGlow {
  0% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}
.stats-content {
  position: relative;
}

.stats-header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 2.5rem;
}
@media (min-width: 1024px) {
  .stats-header {
    text-align: left;
    margin-bottom: 3rem;
  }
}

.stats-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, rgba(185, 28, 28, 0.08) 0%, rgba(185, 28, 28, 0.04) 100%);
  border: 1px solid rgba(185, 28, 28, 0.15);
  border-radius: 9999px;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #B91C1C;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
.stats-eyebrow svg {
  width: 16px;
  height: 16px;
  color: #B91C1C;
}

.stats-headline {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #1F2937;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.stats-headline em {
  font-style: normal;
  color: #B91C1C;
  position: relative;
}
.stats-headline em::after {
  content: "";
  position: absolute;
  bottom: -0.1em;
  left: 0;
  right: 0;
  height: 0.12em;
  background: linear-gradient(90deg, #FCD34D, #F59E0B);
  opacity: 0.6;
  border-radius: 9999px;
}

.stats-subhead {
  font-size: 1.125rem;
  color: #4B5563;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.625;
}
@media (min-width: 1024px) {
  .stats-subhead {
    margin: 0;
  }
}

.stats-scoreboard {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .stats-scoreboard {
    gap: 2rem;
  }
}

.stat-hero {
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(185, 28, 28, 0.1);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(185, 28, 28, 0.05), 0 10px 30px -5px rgba(185, 28, 28, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.stat-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #B91C1C, #F87171, #F59E0B);
}
.stat-hero:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 12px -2px rgba(185, 28, 28, 0.08), 0 20px 50px -10px rgba(185, 28, 28, 0.12), 0 0 0 1px rgba(185, 28, 28, 0.1);
}
.stat-hero:hover .stat-hero-icon {
  transform: scale(1.08) rotate(-3deg);
}
.stat-hero:hover .stat-hero-badge {
  transform: scale(1.1);
}

.stat-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .stat-hero-inner {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
    padding: 2.5rem 2rem;
    text-align: left;
  }
}

.stat-hero-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #B91C1C 0%, #991B1B 100%);
  border-radius: 24px;
  box-shadow: 0 8px 20px -4px rgba(185, 28, 28, 0.4), 0 0 0 4px rgba(185, 28, 28, 0.1);
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.stat-hero-icon svg {
  width: 32px;
  height: 32px;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .stat-hero-icon {
    width: 80px;
    height: 80px;
  }
  .stat-hero-icon svg {
    width: 40px;
    height: 40px;
  }
}

.stat-hero-content {
  flex: 1;
  min-width: 0;
}

.stat-hero-number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .stat-hero-number {
    justify-content: flex-start;
    gap: 0.75rem;
  }
}
.stat-hero-number .stat-value {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  color: #1F2937;
  line-height: 1;
  letter-spacing: -0.025em;
}
.stat-hero-number .stat-currency {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 700;
  color: #D97706;
  text-transform: uppercase;
}

.stat-hero-label {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .stat-hero-label {
    font-size: 1.125rem;
  }
}

.stat-hero-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  border-radius: 50%;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media (min-width: 768px) {
  .stat-hero-badge {
    position: relative;
    top: auto;
    right: auto;
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }
}

.stat-hero-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(90deg, transparent 0%, rgba(245, 158, 11, 0.04) 20%, rgba(245, 158, 11, 0.06) 50%, rgba(245, 158, 11, 0.04) 80%, transparent 100%);
  pointer-events: none;
}

.stats-secondary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .stats-secondary {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.stat-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #FFFFFF;
  border: 1px solid rgba(209, 213, 219, 0.6);
  border-radius: 24px;
  box-shadow: 0 2px 4px rgba(17, 24, 39, 0.04), 0 4px 12px rgba(17, 24, 39, 0.02);
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.stat-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 40%;
  background: linear-gradient(180deg, #B91C1C, #F59E0B);
  border-radius: 0 8px 8px 0;
  opacity: 0;
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.stat-card:hover {
  background: #FFFFFF;
  border-color: rgba(185, 28, 28, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(185, 28, 28, 0.06), 0 8px 24px rgba(185, 28, 28, 0.08);
}
.stat-card:hover::before {
  opacity: 1;
  height: 60%;
}
.stat-card:hover .stat-card-icon {
  background: rgba(185, 28, 28, 0.1);
  border-color: rgba(185, 28, 28, 0.2);
}
.stat-card:hover .stat-card-icon svg {
  color: #B91C1C;
}
@media (min-width: 768px) {
  .stat-card {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.stat-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.stat-card-icon svg {
  width: 24px;
  height: 24px;
  color: #6B7280;
  transition: color 300ms;
}
@media (min-width: 768px) {
  .stat-card-icon {
    width: 56px;
    height: 56px;
  }
  .stat-card-icon svg {
    width: 28px;
    height: 28px;
  }
}

.stat-card-content {
  flex: 1;
  min-width: 0;
}

.stat-card-number {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}
.stat-card-number .stat-value {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #1F2937;
  line-height: 1;
}
.stat-card-number .stat-plus {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #D97706;
}

.stat-card-label {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  margin-top: 0.25rem;
}
@media (min-width: 768px) {
  .stat-card-label {
    font-size: 1rem;
  }
}

.stats-cta {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}
@media (min-width: 1024px) {
  .stats-cta {
    justify-content: flex-start;
    margin-top: 3rem;
  }
}

.cta-section {
  background: linear-gradient(135deg, #B91C1C 0%, rgb(118.5563380282, 17.9436619718, 17.9436619718) 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.cta-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.625;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.cta-bank {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 1rem 1.5rem;
}
.cta-bank .label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cta-bank .number {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.025em;
}

@media (max-width: 768px) {
  .cta-section {
    padding: 3rem 0;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}
.partners-slider-wrapper {
  padding: 1.5rem 0;
  overflow: hidden;
}

.partners-slider {
  padding: 1rem 0;
}

.partner-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.partner-logo-container {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 1rem;
  transition: all 300ms;
  border: 1px solid transparent;
}
.partner-logo-container:hover {
  background: #FFFFFF;
  border-color: #E5E7EB;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.partner-logo-container:hover .partner-logo {
  filter: grayscale(0);
  opacity: 1;
}

.partner-logo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 300ms;
}

@media (max-width: 640px) {
  .partner-logo-container {
    height: 80px;
    padding: 0.5rem;
  }
}
.page-header {
  position: relative;
  background: linear-gradient(135deg, #B91C1C 0%, #991B1B 100%);
  padding: 4rem 0 3rem;
  text-align: center;
  overflow: hidden;
}
@media (min-width: 768px) {
  .page-header {
    padding: 5rem 0 4rem;
  }
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cpath fill='%23ffffff' fill-opacity='0.03' d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9z'/%3E%3C/svg%3E");
  pointer-events: none;
}

.page-header-content {
  position: relative;
  z-index: 1;
}

.page-title {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .page-title {
    font-size: 3rem;
  }
}

.page-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .page-subtitle {
    font-size: 1.25rem;
  }
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}
.breadcrumbs a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.breadcrumbs a:hover {
  color: #FFFFFF;
}
.breadcrumbs .separator {
  color: rgba(255, 255, 255, 0.4);
}
.breadcrumbs .current {
  color: #FCD34D;
}

.page-content {
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .page-content {
    padding: 5rem 0;
  }
}

.prose {
  max-width: 750px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.625;
  color: #374151;
}
.prose h2 {
  font-size: 1.875rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: #111827;
}
.prose h2:first-child {
  margin-top: 0;
}
.prose h3 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #111827;
}
.prose h4 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #111827;
}
.prose p {
  margin-bottom: 1.5rem;
}
.prose a {
  color: #B91C1C;
  text-decoration: underline;
  text-decoration-color: rgba(185, 28, 28, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.prose a:hover {
  text-decoration-color: #B91C1C;
}
.prose ul, .prose ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.prose ul {
  list-style-type: disc;
}
.prose ul li::marker {
  color: #B91C1C;
}
.prose ol {
  list-style-type: decimal;
}
.prose ol li::marker {
  color: #B91C1C;
  font-weight: 600;
}
.prose li {
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
}
.prose blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  background: #F9FAFB;
  border-left: 4px solid #B91C1C;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #374151;
}
.prose blockquote p:last-child {
  margin-bottom: 0;
}
.prose img {
  border-radius: 16px;
  margin: 2rem 0;
}
.prose figure {
  margin: 2rem 0;
}
.prose figure img {
  margin: 0;
}
.prose figure figcaption {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: #6B7280;
  text-align: center;
}
.prose hr {
  border: none;
  height: 1px;
  background: #E5E7EB;
  margin: 3rem 0;
}
.prose table {
  width: 100%;
  margin: 2rem 0;
  border-collapse: collapse;
}
.prose table th, .prose table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid #E5E7EB;
}
.prose table th {
  font-weight: 600;
  color: #111827;
  background: #F9FAFB;
}
.prose table tr:hover td {
  background: #F9FAFB;
}
.prose code {
  font-family: monospace;
  font-size: 0.9em;
  background: #F3F4F6;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  color: #B91C1C;
}
.prose pre {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #111827;
  border-radius: 8px;
  overflow-x: auto;
}
.prose pre code {
  background: none;
  padding: 0;
  color: #F3F4F6;
}

.single-post .post-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: #6B7280;
}
.single-post .post-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.single-post .post-meta .meta-item svg {
  width: 16px;
  height: 16px;
  color: #9CA3AF;
}
.single-post .post-featured-image {
  margin: 2.5rem 0;
  border-radius: 24px;
  overflow: hidden;
}
.single-post .post-featured-image img {
  width: 100%;
  height: auto;
}
.single-post .post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #E5E7EB;
}
.single-post .post-tags .tag {
  padding: 0.25rem 0.75rem;
  background: #F3F4F6;
  border-radius: 9999px;
  font-size: 0.875rem;
  color: #4B5563;
  text-decoration: none;
  transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.single-post .post-tags .tag:hover {
  background: #B91C1C;
  color: #FFFFFF;
}

.related-posts {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid #E5E7EB;
}
.related-posts .related-title {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 2rem;
  text-align: center;
}

.archive-header {
  margin-bottom: 3rem;
  text-align: center;
}

.archive-title {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .archive-title {
    font-size: 2.25rem;
  }
}

.archive-description {
  font-size: 1.125rem;
  color: #4B5563;
  max-width: 600px;
  margin: 0 auto;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
}
.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 0.75rem;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #4B5563;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  text-decoration: none;
  transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.pagination .page-numbers:hover {
  color: #B91C1C;
  border-color: #B91C1C;
}
.pagination .page-numbers.current {
  background: #B91C1C;
  border-color: #B91C1C;
  color: #FFFFFF;
}
.pagination .page-numbers.dots {
  border: none;
  background: none;
}
.pagination .page-numbers.dots:hover {
  color: #4B5563;
}
.pagination .page-numbers.prev svg, .pagination .page-numbers.next svg {
  width: 20px;
  height: 20px;
}

.error-404 {
  text-align: center;
  padding: 5rem 0;
}
.error-404 .error-code {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 8rem;
  font-weight: 800;
  color: #E5E7EB;
  line-height: 1;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .error-404 .error-code {
    font-size: 12rem;
  }
}
.error-404 .error-title {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}
.error-404 .error-description {
  font-size: 1.125rem;
  color: #4B5563;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.page-team {
  overflow-x: hidden;
}

.team-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F9FAFB 0%, rgba(254, 226, 226, 0.2) 50%, #FAFAFA 100%);
  overflow: hidden;
  padding: 5rem 0;
}
@media (min-width: 1024px) {
  .team-hero {
    min-height: 80vh;
    padding: 6rem 0;
  }
}
.team-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(185, 28, 28, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.team-hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.team-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 1.5rem;
}

.team-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #B91C1C;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) backwards;
}
.team-hero-eyebrow::before, .team-hero-eyebrow::after {
  content: "";
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #FCA5A5);
}
.team-hero-eyebrow::after {
  background: linear-gradient(90deg, #FCA5A5, transparent);
}

.team-hero-title {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #1F2937;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s backwards;
}
.team-hero-title .highlight {
  position: relative;
  color: #B91C1C;
  white-space: nowrap;
}
.team-hero-title .highlight::after {
  content: "";
  position: absolute;
  bottom: 0.05em;
  left: 0;
  right: 0;
  height: 0.15em;
  background: linear-gradient(90deg, #FCD34D, #F59E0B);
  opacity: 0.5;
  border-radius: 9999px;
  transform: scaleX(0);
  transform-origin: left;
  animation: scaleIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s forwards;
}

.team-hero-description {
  font-family: "Source Sans 3", system-ui, -apple-system, sans-serif;
  font-size: 1.25rem;
  color: #4B5563;
  line-height: 1.625;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s backwards;
}
@media (min-width: 768px) {
  .team-hero-description {
    font-size: 1.5rem;
  }
}

.team-hero-scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #6B7280;
  font-size: 0.875rem;
  text-decoration: none;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s backwards;
  transition: color 150ms;
}
.team-hero-scroll:hover {
  color: #B91C1C;
}
.team-hero-scroll:hover .scroll-line {
  height: 60px;
  background: #B91C1C;
}
.team-hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: #D1D5DB;
  transition: all 300ms;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.5;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}
.team-story {
  position: relative;
  padding: 6rem 0;
  background: #FFFFFF;
}
@media (min-width: 1024px) {
  .team-story {
    padding: 8rem 0;
  }
}

.team-story-header {
  text-align: center;
  margin-bottom: 4rem;
}
@media (min-width: 1024px) {
  .team-story-header {
    margin-bottom: 5rem;
  }
}

.team-story-title {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 1rem;
}

.team-story-subtitle {
  font-size: 1.125rem;
  color: #6B7280;
  max-width: 500px;
  margin: 0 auto;
}

.team-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.team-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, transparent 0%, #FECACA 10%, #FECACA 90%, transparent 100%);
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .team-timeline::before {
    left: 20px;
  }
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .timeline-item {
    grid-template-columns: 1fr;
    padding-left: 3rem;
    gap: 1rem;
  }
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-item::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 50%;
  width: 16px;
  height: 16px;
  background: #FFFFFF;
  border: 3px solid #B91C1C;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
  transition: all 300ms;
}
@media (max-width: 767px) {
  .timeline-item::before {
    left: 20px;
  }
}
.timeline-item.timeline-item--highlight::before {
  width: 24px;
  height: 24px;
  background: #B91C1C;
  border-color: #B91C1C;
  box-shadow: 0 0 0 6px rgba(185, 28, 28, 0.15);
}
.timeline-item:hover::before {
  transform: translateX(-50%) scale(1.2);
  box-shadow: 0 0 0 8px rgba(185, 28, 28, 0.1);
}
.timeline-item:nth-child(odd) .timeline-content {
  grid-column: 1;
  text-align: right;
  padding-right: 2.5rem;
}
@media (max-width: 767px) {
  .timeline-item:nth-child(odd) .timeline-content {
    grid-column: 1;
    text-align: left;
    padding-right: 0;
  }
}
.timeline-item:nth-child(odd) .timeline-date {
  grid-column: 2;
  padding-left: 2.5rem;
}
@media (max-width: 767px) {
  .timeline-item:nth-child(odd) .timeline-date {
    grid-column: 1;
    padding-left: 0;
  }
}
.timeline-item:nth-child(even) .timeline-content {
  grid-column: 2;
  padding-left: 2.5rem;
}
@media (max-width: 767px) {
  .timeline-item:nth-child(even) .timeline-content {
    grid-column: 1;
    padding-left: 0;
  }
}
.timeline-item:nth-child(even) .timeline-date {
  grid-column: 1;
  text-align: right;
  padding-right: 2.5rem;
}
@media (max-width: 767px) {
  .timeline-item:nth-child(even) .timeline-date {
    grid-column: 1;
    text-align: left;
    padding-right: 0;
    order: -1;
  }
}

.timeline-date {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #B91C1C;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-top: 0.25rem;
}

.timeline-content h3 {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .timeline-content h3 {
    font-size: 1.5rem;
  }
}
.timeline-content p {
  font-size: 1rem;
  color: #4B5563;
  line-height: 1.625;
}
@media (min-width: 768px) {
  .timeline-content p {
    font-size: 1.125rem;
  }
}

.team-members {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(180deg, #FAFAFA 0%, rgba(254, 226, 226, 0.15) 50%, #FAFAFA 100%);
}
@media (min-width: 1024px) {
  .team-members {
    padding: 8rem 0;
  }
}

.team-members-header {
  text-align: center;
  margin-bottom: 4rem;
}

.team-members-title {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 1rem;
}

.team-members-subtitle {
  font-size: 1.125rem;
  color: #6B7280;
  max-width: 500px;
  margin: 0 auto;
}

.team-founder {
  max-width: 800px;
  margin: 0 auto 4rem;
  padding: 0 1.5rem;
}

.founder-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background: #FFFFFF;
  border-radius: 32px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(17, 24, 39, 0.04), 0 10px 40px rgba(185, 28, 28, 0.08);
  border: 1px solid rgba(185, 28, 28, 0.08);
  transition: all 300ms;
}
@media (min-width: 768px) {
  .founder-card {
    grid-template-columns: auto 1fr;
    padding: 2.5rem;
    gap: 2.5rem;
  }
}
.founder-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 12px rgba(17, 24, 39, 0.06), 0 20px 60px rgba(185, 28, 28, 0.12);
}

.founder-image {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .founder-image {
    width: 200px;
    height: 200px;
    margin: 0;
  }
}
.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}
.founder-image::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px solid #FECACA;
  border-radius: 24px;
  opacity: 0.5;
}
.founder-image::after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  border-radius: 16px;
  z-index: -1;
}

.founder-content {
  text-align: center;
}
@media (min-width: 768px) {
  .founder-content {
    text-align: left;
  }
}

.founder-role {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(185, 28, 28, 0.1);
  border-radius: 9999px;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #B91C1C;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.founder-name {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .founder-name {
    font-size: 1.875rem;
  }
}

.founder-bio {
  font-size: 1rem;
  color: #4B5563;
  line-height: 1.625;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .founder-bio {
    font-size: 1.125rem;
  }
}

.founder-quote {
  position: relative;
  padding-left: 1.5rem;
  border-left: 3px solid #F59E0B;
  font-style: italic;
  color: #374151;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .founder-quote {
    font-size: 1.125rem;
  }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.team-member-card {
  text-align: center;
  padding: 1.5rem;
  background: #FFFFFF;
  border-radius: 24px;
  border: 1px solid #F3F4F6;
  transition: all 300ms;
}
.team-member-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(185, 28, 28, 0.1);
  border-color: rgba(185, 28, 28, 0.15);
}
.team-member-card:hover .team-member-image img {
  transform: scale(1.05);
}
.team-member-card:hover .team-member-image::after {
  opacity: 1;
}

.team-member-image {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .team-member-image {
    width: 120px;
    height: 120px;
  }
}
.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms;
}
.team-member-image::after {
  content: "";
  position: absolute;
  inset: -3px;
  border: 2px solid transparent;
  border-radius: 50%;
  background: linear-gradient(#FFFFFF, #FFFFFF) padding-box, linear-gradient(135deg, #B91C1C, #F59E0B) border-box;
  opacity: 0;
  transition: opacity 300ms;
  z-index: -1;
}

.team-member-name {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) {
  .team-member-name {
    font-size: 1.125rem;
  }
}

.team-member-role {
  font-size: 0.875rem;
  color: #6B7280;
}

.team-volunteers {
  position: relative;
  padding: 6rem 0;
  background: #FFFFFF;
}
@media (min-width: 1024px) {
  .team-volunteers {
    padding: 8rem 0;
  }
}

.team-volunteers-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .team-volunteers-inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

@media (min-width: 1024px) {
  .team-volunteers-content {
    padding-right: 2rem;
  }
}

.team-volunteers-number {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.team-volunteers-number .number {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: clamp(4rem, 10vw, 6rem);
  font-weight: 800;
  color: #B91C1C;
  line-height: 1;
}
.team-volunteers-number .plus {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: #F59E0B;
}

.team-volunteers-title {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 1rem;
}

.team-volunteers-text {
  font-size: 1.125rem;
  color: #4B5563;
  line-height: 1.625;
  margin-bottom: 2rem;
}

.volunteer-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) {
  .volunteer-categories {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .volunteer-categories {
    grid-template-columns: repeat(2, 1fr);
  }
}

.volunteer-category {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: #F9FAFB;
  border-radius: 16px;
  transition: all 150ms;
}
.volunteer-category:hover {
  background: rgba(185, 28, 28, 0.05);
  transform: translateX(4px);
}
.volunteer-category:hover .volunteer-category-icon {
  background: #B91C1C;
  color: #FFFFFF;
}

.volunteer-category-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border-radius: 8px;
  color: #B91C1C;
  transition: all 150ms;
}
.volunteer-category-icon svg {
  width: 20px;
  height: 20px;
}

.volunteer-category-name {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}

.team-volunteers-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}
@media (min-width: 1024px) {
  .team-volunteers-visual {
    min-height: 400px;
  }
}

.volunteers-circle {
  position: relative;
  width: 280px;
  height: 280px;
}
@media (min-width: 768px) {
  .volunteers-circle {
    width: 350px;
    height: 350px;
  }
}
.volunteers-circle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #B91C1C 0%, #991B1B 100%);
  border-radius: 50%;
  box-shadow: 0 10px 40px rgba(185, 28, 28, 0.3);
}
@media (min-width: 768px) {
  .volunteers-circle::before {
    width: 100px;
    height: 100px;
  }
}
.volunteers-circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(185, 28, 28, 0.2);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}
@media (min-width: 768px) {
  .volunteers-circle::after {
    width: 150px;
    height: 150px;
  }
}

.volunteer-avatar {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #FFFFFF;
  box-shadow: 0 4px 12px rgba(17, 24, 39, 0.15);
  transition: all 300ms;
}
@media (min-width: 768px) {
  .volunteer-avatar {
    width: 60px;
    height: 60px;
  }
}
.volunteer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.volunteer-avatar:hover {
  transform: scale(1.15);
  z-index: 10;
  box-shadow: 0 8px 24px rgba(185, 28, 28, 0.25);
}
.volunteer-avatar:nth-child(1) {
  top: calc(50% + -1 * 115px - 25px);
  left: calc(50% + 0 * 115px - 25px);
  animation: floatAvatar 4s ease-in-out infinite;
  animation-delay: 0.2s;
}
@media (min-width: 768px) {
  .volunteer-avatar:nth-child(1) {
    top: calc(50% + -1 * 145px - 30px);
    left: calc(50% + 0 * 145px - 30px);
  }
}
.volunteer-avatar:nth-child(2) {
  top: calc(50% + -0.7071067812 * 115px - 25px);
  left: calc(50% + 0.7071067812 * 115px - 25px);
  animation: floatAvatar 4s ease-in-out infinite;
  animation-delay: 0.4s;
}
@media (min-width: 768px) {
  .volunteer-avatar:nth-child(2) {
    top: calc(50% + -0.7071067812 * 145px - 30px);
    left: calc(50% + 0.7071067812 * 145px - 30px);
  }
}
.volunteer-avatar:nth-child(3) {
  top: calc(50% + 0 * 115px - 25px);
  left: calc(50% + 1 * 115px - 25px);
  animation: floatAvatar 4s ease-in-out infinite;
  animation-delay: 0.6s;
}
@media (min-width: 768px) {
  .volunteer-avatar:nth-child(3) {
    top: calc(50% + 0 * 145px - 30px);
    left: calc(50% + 1 * 145px - 30px);
  }
}
.volunteer-avatar:nth-child(4) {
  top: calc(50% + 0.7071067812 * 115px - 25px);
  left: calc(50% + 0.7071067812 * 115px - 25px);
  animation: floatAvatar 4s ease-in-out infinite;
  animation-delay: 0.8s;
}
@media (min-width: 768px) {
  .volunteer-avatar:nth-child(4) {
    top: calc(50% + 0.7071067812 * 145px - 30px);
    left: calc(50% + 0.7071067812 * 145px - 30px);
  }
}
.volunteer-avatar:nth-child(5) {
  top: calc(50% + 1 * 115px - 25px);
  left: calc(50% + 0 * 115px - 25px);
  animation: floatAvatar 4s ease-in-out infinite;
  animation-delay: 1s;
}
@media (min-width: 768px) {
  .volunteer-avatar:nth-child(5) {
    top: calc(50% + 1 * 145px - 30px);
    left: calc(50% + 0 * 145px - 30px);
  }
}
.volunteer-avatar:nth-child(6) {
  top: calc(50% + 0.7071067812 * 115px - 25px);
  left: calc(50% + -0.7071067812 * 115px - 25px);
  animation: floatAvatar 4s ease-in-out infinite;
  animation-delay: 1.2s;
}
@media (min-width: 768px) {
  .volunteer-avatar:nth-child(6) {
    top: calc(50% + 0.7071067812 * 145px - 30px);
    left: calc(50% + -0.7071067812 * 145px - 30px);
  }
}
.volunteer-avatar:nth-child(7) {
  top: calc(50% + 0 * 115px - 25px);
  left: calc(50% + -1 * 115px - 25px);
  animation: floatAvatar 4s ease-in-out infinite;
  animation-delay: 1.4s;
}
@media (min-width: 768px) {
  .volunteer-avatar:nth-child(7) {
    top: calc(50% + 0 * 145px - 30px);
    left: calc(50% + -1 * 145px - 30px);
  }
}
.volunteer-avatar:nth-child(8) {
  top: calc(50% + -0.7071067812 * 115px - 25px);
  left: calc(50% + -0.7071067812 * 115px - 25px);
  animation: floatAvatar 4s ease-in-out infinite;
  animation-delay: 1.6s;
}
@media (min-width: 768px) {
  .volunteer-avatar:nth-child(8) {
    top: calc(50% + -0.7071067812 * 145px - 30px);
    left: calc(50% + -0.7071067812 * 145px - 30px);
  }
}

@keyframes floatAvatar {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.team-cta {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, #B91C1C 0%, #991B1B 100%);
  overflow: hidden;
}
@media (min-width: 1024px) {
  .team-cta {
    padding: 6rem 0;
  }
}
.team-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  pointer-events: none;
}

.team-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.team-cta-title {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.team-cta-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.625;
  margin-bottom: 2rem;
}

.team-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scaleIn {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.8;
  }
}
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-tournament {
  overflow-x: hidden;
  background: #FAFAFA;
}

.tournament-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #B91C1C 0%, #7F1D1D 100%);
  overflow: hidden;
  padding: 5rem 0;
}
@media (min-width: 1024px) {
  .tournament-hero {
    min-height: 90vh;
  }
}
.tournament-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(255, 255, 255, 0.02) 40px, rgba(255, 255, 255, 0.02) 80px);
  pointer-events: none;
}
.tournament-hero::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -200px;
  width: 500px;
  height: 500px;
  border: 3px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
@media (min-width: 1024px) {
  .tournament-hero::after {
    right: -100px;
    width: 700px;
    height: 700px;
  }
}

.tournament-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.tournament-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .tournament-hero-inner {
    grid-template-columns: 1fr auto;
    gap: 4rem;
  }
}

.tournament-hero-info {
  text-align: center;
}
@media (min-width: 1024px) {
  .tournament-hero-info {
    text-align: left;
  }
}

.tournament-edition {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 9999px;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #FCD34D;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) backwards;
}

.tournament-hero-title {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s backwards;
}
.tournament-hero-title .year {
  display: block;
  font-size: 0.5em;
  color: #F59E0B;
  margin-top: 0.5rem;
}

.tournament-hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s backwards;
}
@media (min-width: 1024px) {
  .tournament-hero-meta {
    justify-content: flex-start;
  }
}

.tournament-meta-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
}
.tournament-meta-item svg {
  width: 24px;
  height: 24px;
  color: #F59E0B;
  flex-shrink: 0;
}
.tournament-meta-item strong {
  font-weight: 600;
}

.tournament-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s backwards;
}
@media (min-width: 1024px) {
  .tournament-hero-buttons {
    justify-content: flex-start;
  }
}

.tournament-countdown {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 2rem;
  text-align: center;
  animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s backwards;
}
@media (min-width: 1024px) {
  .tournament-countdown {
    padding: 2.5rem;
  }
}

.countdown-label {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .countdown-grid {
    gap: 1rem;
  }
}

.countdown-item {
  text-align: center;
}
.countdown-item .number {
  display: block;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.countdown-item .label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
@media (min-width: 768px) {
  .countdown-item .label {
    font-size: 0.875rem;
  }
}

.tournament-categories {
  position: relative;
  padding: 5rem 0;
  background: #FFFFFF;
  margin-top: -4rem;
  border-radius: 32px 32px 0 0;
  z-index: 10;
}
@media (min-width: 1024px) {
  .tournament-categories {
    padding: 6rem 0;
    margin-top: -5rem;
  }
}

.tournament-section-header {
  text-align: center;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .tournament-section-header {
    margin-bottom: 4rem;
  }
}

.tournament-section-title {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 0.75rem;
}

.tournament-section-subtitle {
  font-size: 1.125rem;
  color: #6B7280;
}

.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.category-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 2rem;
  border: 2px solid #F3F4F6;
  transition: all 300ms;
}
.category-card:hover {
  border-color: #FECACA;
  box-shadow: 0 20px 60px rgba(185, 28, 28, 0.1);
  transform: translateY(-4px);
}
.category-card:hover .category-badge {
  transform: scale(1.05);
}
@media (min-width: 1024px) {
  .category-card {
    padding: 2.5rem;
  }
}

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

.category-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, #B91C1C 0%, #991B1B 100%);
  border-radius: 16px;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  transition: transform 300ms;
}
@media (min-width: 768px) {
  .category-badge {
    font-size: 1.5rem;
    padding: 1rem 1.5rem;
  }
}

.category-price {
  text-align: right;
}
.category-price .amount {
  display: block;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #D97706;
  line-height: 1;
}
@media (min-width: 768px) {
  .category-price .amount {
    font-size: 1.875rem;
  }
}
.category-price .label {
  font-size: 0.875rem;
  color: #6B7280;
}

.category-title {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 1rem;
}

.category-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #F3F4F6;
}

.category-spec .value {
  display: block;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) {
  .category-spec .value {
    font-size: 1.5rem;
  }
}
.category-spec .label {
  font-size: 0.875rem;
  color: #6B7280;
}

.category-details {
  list-style: none;
}
.category-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 1rem;
  color: #4B5563;
}
.category-details li svg {
  width: 20px;
  height: 20px;
  color: #B91C1C;
  flex-shrink: 0;
  margin-top: 2px;
}

.tournament-venue {
  position: relative;
  padding: 5rem 0;
  background: #FAFAFA;
}
@media (min-width: 1024px) {
  .tournament-venue {
    padding: 6rem 0;
  }
}

.venue-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .venue-grid {
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .venue-info {
    position: sticky;
    top: 120px;
  }
}

.venue-title {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .venue-title {
    font-size: 1.875rem;
  }
}

.venue-address {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  color: #4B5563;
}
.venue-address svg {
  width: 24px;
  height: 24px;
  color: #B91C1C;
  flex-shrink: 0;
  margin-top: 2px;
}

.venue-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.venue-feature {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #FFFFFF;
  border-radius: 9999px;
  font-size: 0.875rem;
  color: #374151;
  border: 1px solid #E5E7EB;
}
.venue-feature svg {
  width: 16px;
  height: 16px;
  color: #B91C1C;
}

.venue-directions .btn {
  width: 100%;
}
@media (min-width: 640px) {
  .venue-directions .btn {
    width: auto;
  }
}

.venue-map {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(17, 24, 39, 0.1);
  border: 4px solid #FFFFFF;
}
.venue-map iframe {
  display: block;
  width: 100%;
  height: 350px;
}
@media (min-width: 768px) {
  .venue-map iframe {
    height: 450px;
  }
}

.tournament-schedule {
  position: relative;
  padding: 5rem 0;
  background: #FFFFFF;
}
@media (min-width: 1024px) {
  .tournament-schedule {
    padding: 6rem 0;
  }
}

.schedule-timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.schedule-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 79px;
  width: 2px;
  background: linear-gradient(180deg, #FECACA, #FDE68A);
}
@media (max-width: 639px) {
  .schedule-timeline::before {
    left: 50px;
  }
}

.schedule-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  position: relative;
}
@media (max-width: 639px) {
  .schedule-item {
    gap: 1rem;
  }
}
.schedule-item::before {
  content: "";
  position: absolute;
  left: 72px;
  top: 2rem;
  width: 16px;
  height: 16px;
  background: #FFFFFF;
  border: 3px solid #B91C1C;
  border-radius: 50%;
  z-index: 2;
}
@media (max-width: 639px) {
  .schedule-item::before {
    left: 43px;
  }
}
.schedule-item.schedule-item--highlight::before {
  width: 20px;
  height: 20px;
  left: 70px;
  background: #F59E0B;
  border-color: #F59E0B;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2);
}
@media (max-width: 639px) {
  .schedule-item.schedule-item--highlight::before {
    left: 41px;
  }
}

.schedule-time {
  flex-shrink: 0;
  width: 60px;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #B91C1C;
  text-align: right;
}
@media (min-width: 640px) {
  .schedule-time {
    width: 70px;
    font-size: 1.25rem;
    padding-right: 1rem;
  }
}

.schedule-content {
  flex: 1;
  padding-left: 2rem;
}
@media (max-width: 639px) {
  .schedule-content {
    padding-left: 1.5rem;
  }
}
.schedule-content h3 {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 0.25rem;
}
@media (min-width: 640px) {
  .schedule-content h3 {
    font-size: 1.25rem;
  }
}
.schedule-content p {
  font-size: 1rem;
  color: #6B7280;
}

.tournament-links {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, #F9FAFB 0%, rgba(254, 226, 226, 0.2) 100%);
}
@media (min-width: 1024px) {
  .tournament-links {
    padding: 6rem 0;
  }
}

.links-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .links-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.link-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #FFFFFF;
  border-radius: 24px;
  text-decoration: none;
  border: 1px solid #F3F4F6;
  transition: all 300ms;
}
.link-card:hover {
  border-color: #FECACA;
  box-shadow: 0 10px 30px rgba(185, 28, 28, 0.1);
  transform: translateY(-2px);
}
.link-card:hover .link-icon {
  background: #B91C1C;
  color: #FFFFFF;
}
.link-card:hover .link-arrow {
  transform: translateX(4px);
  color: #B91C1C;
}

.link-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F3F4F6;
  border-radius: 16px;
  color: #B91C1C;
  transition: all 300ms;
}
.link-icon svg {
  width: 28px;
  height: 28px;
}

.link-content {
  flex: 1;
  min-width: 0;
}
.link-content .title {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) {
  .link-content .title {
    font-size: 1.125rem;
  }
}
.link-content .description {
  font-size: 0.875rem;
  color: #6B7280;
}

.link-arrow {
  flex-shrink: 0;
  color: #9CA3AF;
  transition: all 300ms;
}
.link-arrow svg {
  width: 20px;
  height: 20px;
}

.tournament-payment {
  position: relative;
  padding: 4rem 0;
  background: #FFFFFF;
}
@media (min-width: 1024px) {
  .tournament-payment {
    padding: 5rem 0;
  }
}

.payment-card {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
  background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
  border-radius: 32px;
  text-align: center;
}
@media (min-width: 768px) {
  .payment-card {
    padding: 3rem;
  }
}

.payment-title {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .payment-title {
    font-size: 1.5rem;
  }
}

.payment-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .payment-details {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}

.payment-item .label {
  display: block;
  font-size: 0.875rem;
  color: #9CA3AF;
  margin-bottom: 0.25rem;
}
.payment-item .value {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #F59E0B;
  letter-spacing: 0.025em;
}
@media (min-width: 768px) {
  .payment-item .value {
    font-size: 1.5rem;
  }
}

.payment-note {
  font-size: 0.875rem;
  color: #9CA3AF;
  max-width: 400px;
  margin: 0 auto;
}

.tournament-history {
  position: relative;
  padding: 5rem 0;
  background: #FAFAFA;
}
@media (min-width: 1024px) {
  .tournament-history {
    padding: 6rem 0;
  }
}

.history-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.history-table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(17, 24, 39, 0.05);
}
.history-table thead {
  background: #B91C1C;
}
.history-table thead th {
  padding: 1rem 1.5rem;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #FFFFFF;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
.history-table thead th:first-child {
  border-radius: 16px 0 0 0;
}
.history-table thead th:last-child {
  border-radius: 0 16px 0 0;
}
.history-table tbody tr {
  border-bottom: 1px solid #F3F4F6;
  transition: background 150ms;
}
.history-table tbody tr:hover {
  background: #F9FAFB;
}
.history-table tbody tr:last-child {
  border-bottom: none;
}
.history-table tbody td {
  padding: 1rem 1.5rem;
  font-size: 1rem;
  color: #374151;
}
.history-table tbody td:first-child {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  color: #B91C1C;
}

.tournament-cta {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, #B91C1C 0%, #7F1D1D 100%);
  overflow: hidden;
}
@media (min-width: 1024px) {
  .tournament-cta {
    padding: 6rem 0;
  }
}
.tournament-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='2' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
}

.tournament-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.tournament-cta-title {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.tournament-cta-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.tournament-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.page-events {
  overflow-x: hidden;
}

.events-hero {
  position: relative;
  background: linear-gradient(135deg, #F9FAFB 0%, rgba(254, 226, 226, 0.2) 50%, #FAFAFA 100%);
  padding: 5rem 0 6rem;
  overflow: hidden;
  text-align: center;
  color: #111827;
}
@media (min-width: 1024px) {
  .events-hero {
    padding: 6rem 0 8rem;
  }
}
.events-hero .hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.1;
  z-index: 0;
}
.events-hero .hero-shape--1 {
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: #B91C1C;
}
.events-hero .hero-shape--2 {
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: #F59E0B;
}

.events-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.events-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #B91C1C;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) backwards;
}
.events-hero-eyebrow::before, .events-hero-eyebrow::after {
  content: "";
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #FCA5A5);
}
.events-hero-eyebrow::after {
  background: linear-gradient(90deg, #FCA5A5, transparent);
}

.events-hero-title {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #1F2937;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s backwards;
}
.events-hero-title .highlight {
  color: #B91C1C;
  position: relative;
  white-space: nowrap;
}
.events-hero-title .highlight::after {
  content: "";
  position: absolute;
  bottom: 0.1em;
  left: 0;
  right: 0;
  height: 0.15em;
  background: linear-gradient(90deg, #FCD34D, #F59E0B);
  opacity: 0.5;
  border-radius: 9999px;
  transform: scaleX(0);
  transform-origin: left;
  animation: scaleIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s forwards;
}

.events-hero-description {
  font-size: 1.25rem;
  color: #4B5563;
  line-height: 1.625;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s backwards;
}

.events-slider-section {
  position: relative;
  margin-top: -4rem;
  padding-bottom: 6rem;
  z-index: 10;
}

.events-slider {
  padding: 1rem 0;
}

.event-slide {
  padding: 1rem;
}

.year-card {
  background: #FFFFFF;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 300ms;
  border: 1px solid #F3F4F6;
  position: relative;
}
.year-card:hover {
  transform: translateY(-8px);
}
.year-card:hover .card-image img {
  transform: scale(1.1);
}
.year-card .card-year-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #FFFFFF;
  color: #B91C1C;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-weight: 800;
  padding: 0.5rem 1rem;
  border-radius: 16px;
  z-index: 10;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  font-size: 1.125rem;
}
.year-card .card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.year-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-out;
}
.year-card .card-image .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
}
.year-card .card-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.year-card .card-date {
  font-size: 0.75rem;
  color: #B91C1C;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.year-card .card-title {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.year-card .card-desc {
  font-size: 1rem;
  color: #4B5563;
  line-height: 1.625;
  margin-bottom: 1.5rem;
}
.year-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1.5rem;
  color: #B91C1C;
  font-weight: 700;
  text-decoration: none;
  transition: gap 150ms;
  border-top: 1px solid #F3F4F6;
  width: 100%;
}
.year-card .card-link:hover {
  gap: 0.75rem;
  text-decoration: underline;
}
.year-card .card-link svg {
  width: 16px;
  height: 16px;
}

.events-slider-arrows {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.events-slider-arrows .splide__arrow {
  position: static;
  transform: none;
  width: 56px;
  height: 56px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 50%;
  color: #1F2937;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  transition: all 150ms;
  opacity: 1;
}
.events-slider-arrows .splide__arrow:hover:not(:disabled) {
  background: #B91C1C;
  color: #FFFFFF;
  border-color: #B91C1C;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.events-slider-arrows .splide__arrow svg {
  fill: none;
  width: 24px;
  height: 24px;
}

.page-support {
  overflow-x: hidden;
}

.support-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F9FAFB 0%, rgba(254, 226, 226, 0.2) 50%, #FAFAFA 100%);
  overflow: hidden;
  padding: 5rem 0;
}
@media (min-width: 1024px) {
  .support-hero {
    min-height: 80vh;
    padding: 6rem 0;
  }
}
.support-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(185, 28, 28, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.support-hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.support-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 1.5rem;
}

.support-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #B91C1C;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) backwards;
}
.support-hero-eyebrow::before, .support-hero-eyebrow::after {
  content: "";
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #FCA5A5);
}
.support-hero-eyebrow::after {
  background: linear-gradient(90deg, #FCA5A5, transparent);
}

.support-hero-title {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #1F2937;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s backwards;
}
.support-hero-title .highlight {
  position: relative;
  color: #B91C1C;
  white-space: nowrap;
}
.support-hero-title .highlight::after {
  content: "";
  position: absolute;
  bottom: 0.05em;
  left: 0;
  right: 0;
  height: 0.15em;
  background: linear-gradient(90deg, #FCD34D, #F59E0B);
  opacity: 0.5;
  border-radius: 9999px;
  transform: scaleX(0);
  transform-origin: left;
  animation: scaleIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s forwards;
}

.support-hero-description {
  font-family: "Source Sans 3", system-ui, -apple-system, sans-serif;
  font-size: 1.25rem;
  color: #4B5563;
  line-height: 1.625;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s backwards;
}
@media (min-width: 768px) {
  .support-hero-description {
    font-size: 1.5rem;
  }
}

.support-intro {
  padding: 5rem 0;
}
.support-intro .intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .support-intro .intro-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }
}
.support-intro .section-title {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .support-intro .section-title {
    font-size: 2.25rem;
  }
}
.support-intro .intro-text p {
  margin-bottom: 1rem;
  line-height: 1.625;
  color: #374151;
  font-size: 1.125rem;
}
.support-intro .intro-text p.lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: #111827;
}
.support-intro .intro-card {
  background: linear-gradient(135deg, #B91C1C 0%, #991B1B 100%);
  border-radius: 24px;
  padding: 0.25rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  transform: rotate(-1deg);
  transition: transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.support-intro .intro-card:hover {
  transform: rotate(0);
}
.support-intro .intro-card .intro-card-inner {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}
.support-intro .intro-card .intro-card-icon {
  display: block;
  font-size: 3rem;
  margin-bottom: 1rem;
}
.support-intro .intro-card h3 {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}
.support-intro .intro-card p {
  color: #4B5563;
  line-height: 1.625;
}

.support-options {
  padding: 5rem 0;
  background-color: #FAFAFA;
}

.options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .options-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.options-col {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  border: 1px solid #F3F4F6;
  transition: transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (min-width: 1024px) {
  .options-col {
    padding: 2.5rem;
  }
}
.options-col:hover {
  transform: translateY(-5px);
}
.options-col .col-header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.options-col .col-header .icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}
.options-col .col-header h2 {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: #111827;
}
.options-col--help .icon-wrapper {
  background-color: #FEE2E2;
  color: #DC2626;
}
.options-col--offer .icon-wrapper {
  background-color: #FEF3C7;
  color: #B45309;
}

.check-list, .star-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li, .star-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.check-list .check-icon {
  color: #B91C1C;
  font-weight: bold;
  margin-right: 0.75rem;
  font-size: 1.125rem;
  margin-top: 2px;
}

.check-list .list-content {
  display: flex;
  flex-direction: column;
}
.check-list .list-content strong {
  color: #111827;
  margin-bottom: 2px;
}
.check-list .list-content span {
  color: #4B5563;
  font-size: 0.875rem;
}

.star-list .list-bullet {
  color: #F59E0B;
  margin-right: 0.75rem;
  font-size: 1.125rem;
  margin-top: 2px;
}

.star-list span {
  color: #374151;
}

.account-section {
  padding: 5rem 0;
}

.account-card {
  background: #111827;
  border-radius: 32px;
  padding: 2rem;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.account-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(185, 28, 28, 0.3) 0%, rgba(17, 24, 39, 0) 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
}
@media (min-width: 1024px) {
  .account-card {
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
  }
}
.account-card .account-header {
  position: relative;
  z-index: 1;
}
.account-card .account-header h2 {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #FFFFFF;
}
.account-card .account-header p {
  color: #D1D5DB;
  font-size: 1.125rem;
  line-height: 1.625;
}
.account-card .account-details {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}
.account-card .account-number-box {
  margin-bottom: 1.5rem;
}
.account-card .account-number-box .label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
  color: #9CA3AF;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.account-card .account-number-box .number-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.account-card .account-number-box .number {
  font-family: "Courier New", monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FBBF24;
  letter-spacing: -1px;
}
.account-card .copy-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #FFFFFF;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 150ms;
}
.account-card .copy-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}
.account-card .copy-btn .icon {
  width: 16px;
  height: 16px;
}
.account-card .account-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: #B91C1C;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 9999px;
  font-weight: 600;
  transition: background 150ms;
  width: 100%;
}
@media (min-width: 640px) {
  .account-card .account-actions .btn {
    width: auto;
  }
}
.account-card .account-actions .btn:hover {
  background: #DC2626;
}
.account-card .account-actions .btn .btn-icon {
  width: 20px;
  height: 20px;
  margin-left: 0.5rem;
}

.partners-section {
  padding: 5rem 0;
  text-align: center;
}
.partners-section .partners-header {
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.partners-section .partners-header h2 {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #111827;
}
.partners-section .partners-header p {
  color: #4B5563;
}
.partners-section .partners-grid {
  margin-bottom: 2.5rem;
  width: 100%;
}
.partners-section .partners-cta p {
  margin-bottom: 1rem;
  color: #4B5563;
  font-weight: 500;
}
.partners-section .btn-outline {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 2px solid #D1D5DB;
  color: #374151;
  text-decoration: none;
  border-radius: 9999px;
  font-weight: 700;
  transition: all 150ms;
}
.partners-section .btn-outline:hover {
  border-color: #B91C1C;
  color: #B91C1C;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scaleIn {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.5;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}
.page-contact {
  overflow-x: hidden;
}

.contact-hero {
  position: relative;
  background: linear-gradient(135deg, #F9FAFB 0%, rgba(254, 226, 226, 0.2) 50%, #FAFAFA 100%);
  padding: 5rem 0 6rem;
  overflow: hidden;
  text-align: center;
  color: #111827;
}
@media (min-width: 1024px) {
  .contact-hero {
    padding: 6rem 0 8rem;
  }
}
.contact-hero .hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.1;
  z-index: 0;
}
.contact-hero .hero-shape--1 {
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: #B91C1C;
}
.contact-hero .hero-shape--2 {
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: #F59E0B;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.contact-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #B91C1C;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) backwards;
}
.contact-hero-eyebrow::before, .contact-hero-eyebrow::after {
  content: "";
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #FCA5A5);
}
.contact-hero-eyebrow::after {
  background: linear-gradient(90deg, #FCA5A5, transparent);
}

.contact-hero-title {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #1F2937;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s backwards;
}
.contact-hero-title .highlight {
  color: #B91C1C;
  position: relative;
  white-space: nowrap;
}
.contact-hero-title .highlight::after {
  content: "";
  position: absolute;
  bottom: 0.1em;
  left: 0;
  right: 0;
  height: 0.15em;
  background: linear-gradient(90deg, #FCD34D, #F59E0B);
  opacity: 0.5;
  border-radius: 9999px;
  transform: scaleX(0);
  transform-origin: left;
  animation: scaleIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s forwards;
}

.contact-hero-description {
  font-size: 1.25rem;
  color: #4B5563;
  line-height: 1.625;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s backwards;
}

.contact-main-section {
  position: relative;
  z-index: 10;
  margin-top: -4rem;
  padding-bottom: 5rem;
}

.contact-split-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .contact-split-layout {
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: stretch;
  }
}

.person-card-modern {
  background: #FFFFFF;
  border-radius: 32px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  border: 1px solid #F3F4F6;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  height: 100%;
}
@media (min-width: 768px) {
  .person-card-modern {
    padding: 3rem;
  }
}
.person-card-modern .person-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  border: 4px solid #FFFFFF;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.person-card-modern .person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.person-card-modern .person-details {
  text-align: center;
}
.person-card-modern .person-details .role-tag {
  display: inline-block;
  background: #FEE2E2;
  color: #991B1B;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}
.person-card-modern .person-details h2 {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
}
.person-card-modern .person-details .bio {
  font-size: 1.125rem;
  line-height: 1.625;
  color: #4B5563;
  font-style: italic;
  margin-bottom: 2.5rem;
}
.person-card-modern .direct-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) {
  .person-card-modern .direct-actions {
    flex-direction: row;
    justify-content: center;
  }
}
.person-card-modern .action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  text-decoration: none;
  transition: all 150ms;
}
.person-card-modern .action-btn svg {
  width: 20px;
  height: 20px;
}
.person-card-modern .action-btn.primary {
  background: #B91C1C;
  color: #FFFFFF;
  box-shadow: 0 10px 40px -10px rgba(185, 28, 28, 0.4);
}
.person-card-modern .action-btn.primary:hover {
  background: #DC2626;
  transform: translateY(-2px);
}
.person-card-modern .action-btn.secondary {
  background: #F3F4F6;
  color: #1F2937;
}
.person-card-modern .action-btn.secondary:hover {
  background: #E5E7EB;
  transform: translateY(-2px);
}
.person-card-modern .social-links-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  border-top: 1px solid #F3F4F6;
  padding-top: 2rem;
}
.person-card-modern .social-links-row a {
  color: #9CA3AF;
  transition: all 150ms;
}
.person-card-modern .social-links-row a:hover {
  color: #B91C1C;
  transform: scale(1.1);
}
.person-card-modern .social-links-row a svg {
  width: 28px;
  height: 28px;
}

.org-card {
  background: #FFFFFF;
  border-radius: 32px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  border: 1px solid #F3F4F6;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.org-card .org-header {
  background: #F9FAFB;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #E5E7EB;
}
.org-card .org-header h3 {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1F2937;
  margin: 0;
}
.org-card .org-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.org-card .section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #9CA3AF;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.org-card .org-link-large {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  text-decoration: none;
  transition: color 150ms;
}
.org-card .org-link-large:hover {
  color: #B91C1C;
  text-decoration: underline;
}
.org-card .divider {
  height: 1px;
  background: #F3F4F6;
  margin: 2rem 0;
}
.org-card .org-data-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .org-card .org-data-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.org-card .org-data-grid .data-item {
  display: flex;
  flex-direction: column;
}
.org-card .org-data-grid .data-item.full {
  grid-column: 1/-1;
}
.org-card .org-data-grid .data-item strong {
  color: #111827;
  font-size: 1rem;
}
.org-card .org-data-grid .data-item span {
  color: #4B5563;
  line-height: 1.4;
}
.org-card .org-data-grid .data-item.muted {
  font-size: 0.75rem;
  color: #6B7280;
  margin-top: 0.5rem;
}
.org-card .org-data-grid .data-item .label {
  font-size: 0.75rem;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
  font-weight: 700;
}
.org-card .bank-inline-copy {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.org-card .bank-inline-copy strong {
  font-family: "Courier New", monospace;
  font-size: 1.125rem;
  color: #B91C1C;
}
.org-card .bank-inline-copy .copy-btn-inline {
  background: #F3F4F6;
  border: none;
  color: #6B7280;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 150ms;
}
.org-card .bank-inline-copy .copy-btn-inline:hover {
  background: #B91C1C;
  color: #FFFFFF;
  transform: scale(1.1);
}
.org-card .bank-inline-copy .copy-btn-inline svg {
  width: 14px;
  height: 14px;
}

.contact-map-full {
  height: 450px;
  width: 100%;
  position: relative;
  background: #E5E7EB;
}
.contact-map-full iframe {
  filter: grayscale(1);
  transition: filter 0.5s;
}
.contact-map-full:hover iframe {
  filter: grayscale(0);
}
.contact-map-full .map-overlay-content {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.contact-map-full .map-overlay-content .btn {
  pointer-events: auto;
  background: #FFFFFF;
  color: #111827;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  text-decoration: none;
  transition: all 150ms;
}
.contact-map-full .map-overlay-content .btn:hover {
  background: #B91C1C;
  color: #FFFFFF;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.container-narrow {
  max-width: 900px;
}

.container-wide {
  max-width: 1440px;
}

.section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.section-sm {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 768px) {
  .section-sm {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .section-header {
    margin-bottom: 4rem;
  }
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #B91C1C;
  margin-bottom: 1rem;
}
.section-label::before, .section-label::after {
  content: "";
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, #B91C1C, #F59E0B);
  border-radius: 9999px;
}

.section-title {
  margin-bottom: 1rem;
}
.section-title .highlight {
  color: #B91C1C;
  position: relative;
}
.section-title .highlight::after {
  content: "";
  position: absolute;
  bottom: -0.03em;
  left: 0;
  right: 0;
  height: 0.15em;
  background: linear-gradient(90deg, #FCD34D, #F59E0B);
  border-radius: 9999px;
  z-index: -1;
}

.section-description {
  font-size: 1.125rem;
  color: #4B5563;
}
@media (min-width: 768px) {
  .section-description {
    font-size: 1.25rem;
  }
}

.text-center {
  text-align: center;
}

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

.text-right {
  text-align: right;
}

.text-primary {
  color: #B91C1C;
}

.text-accent {
  color: #F59E0B;
}

.text-white {
  color: #FFFFFF;
}

.text-gray {
  color: #4B5563;
}

.text-dark {
  color: #111827;
}

.font-display {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
}

.font-body {
  font-family: "Source Sans 3", system-ui, -apple-system, sans-serif;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.mt-auto {
  margin-top: auto;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.hidden {
  display: none;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.grid {
  display: grid;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

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

.justify-between {
  justify-content: space-between;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-col {
  flex-direction: column;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.bg-white {
  background-color: #FFFFFF;
}

.bg-light {
  background-color: #F9FAFB;
}

.bg-gray {
  background-color: #F3F4F6;
}

.bg-dark {
  background-color: #1F2937;
}

.bg-primary {
  background-color: #B91C1C;
}

.bg-accent {
  background-color: #F59E0B;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .hide-desktop {
    display: none !important;
  }
}
.animate-fade-in {
  animation: fadeIn 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-slide-up {
  animation: slideUp 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-scale-in {
  animation: scaleIn 500ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal=left] {
  transform: translateX(-30px);
}
[data-reveal=left].revealed {
  transform: translateX(0);
}

[data-reveal=right] {
  transform: translateX(30px);
}
[data-reveal=right].revealed {
  transform: translateX(0);
}

[data-reveal=scale] {
  transform: scale(0.9);
}
[data-reveal=scale].revealed {
  transform: scale(1);
}

[data-reveal-delay="1"] {
  transition-delay: 100ms;
}

[data-reveal-delay="2"] {
  transition-delay: 200ms;
}

[data-reveal-delay="3"] {
  transition-delay: 300ms;
}

[data-reveal-delay="4"] {
  transition-delay: 400ms;
}

[data-reveal-delay="5"] {
  transition-delay: 500ms;
}

[data-reveal-delay="6"] {
  transition-delay: 600ms;
}

[data-reveal-delay="7"] {
  transition-delay: 700ms;
}

[data-reveal-delay="8"] {
  transition-delay: 800ms;
}

[data-reveal-delay="9"] {
  transition-delay: 900ms;
}

[data-reveal-delay="10"] {
  transition-delay: 1000ms;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*# sourceMappingURL=main.css.map */
