/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
  --iute-red:       #F04C3D;
  --iute-red-dark:  #D63428;
  --iute-black:     #2D2D2D;
  --iute-white:     #FFFFFF;
  --iute-fog:       #F3F3F3;
  --iute-cloud:     #EBF3FF;
 
  --bg:         #F3F3F3;
  --bg2:        #F8F8F8;
  --panel:      #FFFFFF;
  --soft:       #F5F5F5;
  --border:     rgba(0,0,0,0.09);
  --border-h:   rgba(240,76,61,0.25);
  --text:       #000000;
  --text-soft:  #2A2A2A;
  --muted:      rgba(0,0,0,0.65);
 
  --red:        #F04C3D;
  --red-dark:   #D63428;
  --red-glow:   rgba(240,76,61,0.12);
  --red-soft:   rgba(240,76,61,0.06);
  --red-border: rgba(240,76,61,0.15);
 
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
 
  --font: 'Manrope', sans-serif;
 
  --shadow-card: 0 2px 12px rgba(0,0,0,0.06), 0 1px 0 rgba(0,0,0,0.02) inset;
  --shadow-red:  0 0 24px rgba(240,76,61,0.15), 0 4px 12px rgba(0,0,0,0.08);
 
  --transition: 0.2s cubic-bezier(0.4,0,0.2,1);
}
 
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
 
body {
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 70% 45% at 95% 0%, rgba(240,76,61,0.04) 0%, transparent 55%),
    radial-gradient(ellipse 50% 35% at 5% 95%, rgba(240,76,61,0.02) 0%, transparent 55%);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}
 
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { max-width: 100%; display: block; }
main { min-height: 100vh; padding-bottom: 120px; }
 
.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}
 
/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}
 
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 0;
}
 
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  width: 100px;  
  height: auto;
  object-fit: contain;
  display: block;
}

.brand-name {
  color: #000000;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.5px;
  text-transform: lowercase;
}

.brand-sub {
  color: #F04C3D;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transform: translateY(1px); 
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1 1;
  justify-content: center;
  flex-wrap: wrap;
}
 
.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
  background: transparent;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(240, 76, 61, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
 
.nav-link:hover {
  color: var(--text);
  background: rgba(0, 0, 0, 0.05);
  border-color: var(--border);
  transform: translateY(-1px);
}

.nav-link:hover::before {
  opacity: 1;
}
 
.nav-link.active {
  color: var(--text);
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(240, 76, 61, 0.2);
}
 
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
 
.lang-switch {
  display: flex;
  gap: 4px;
  background: rgba(240, 76, 61,0.06);
  border-radius: 999px;
  padding: 4px;
}
 
.lang-switch a {
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-soft);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.lang-switch a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(240, 76, 61, 0.1), transparent);
  border-radius: 999px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
 
.lang-switch a:hover {
  background: rgba(0, 0, 0, 0.06);
  color: var(--text);
  transform: translateY(-1px);
}
 
.lang-switch a.active {
  background: linear-gradient(135deg, #F04C3D 0%, #D63428 100%);
  color: white;
  box-shadow: 
    0 4px 15px rgba(240, 76, 61, 0.3),
    0 0 20px rgba(240, 76, 61, 0.2);
  transform: scale(1.05);
}
 
/* ============================================
   BUTTONS
   ============================================ */
.btn, .btn-secondary, .btn-ghost, .btn-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  letter-spacing: -0.01em;
  line-height: 1;
  position: relative;
  overflow: hidden;
}

.btn::before,
.btn-secondary::before,
.btn-ghost::before,
.btn-danger::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  pointer-events: none;
}

.btn:hover::before,
.btn-secondary:hover::before,
.btn-ghost:hover::before,
.btn-danger:hover::before {
  width: 300px;
  height: 300px;
}
 
.btn {
  background: #F04C3D;
  color: #fff;
  box-shadow: 0 4px 15px rgba(240, 76, 61, 0.3);
  border: none;
}
 
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(240, 76, 61, 0.4);
  background: #E84234;
}

.btn:disabled,
.btn-secondary:disabled,
.btn-ghost:disabled,
.btn-danger:disabled {
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
  box-shadow: none;
}

.btn:disabled:hover,
.btn-secondary:disabled:hover,
.btn-ghost:disabled:hover,
.btn-danger:disabled:hover {
  transform: none;
  box-shadow: none;
}
 
.btn:active { 
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(240, 76, 61, 0.25);
}
 
.btn-secondary {
  background: rgba(0, 0, 0, 0.04);
  border-color: var(--border);
  color: var(--text);
}
 
.btn-secondary:hover {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
 
.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--muted);
}
 
.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
  background: rgba(0, 0, 0, 0.02);
}
 
.btn-danger {
  background: rgba(240, 76, 61, 0.08);
  border-color: var(--red-border);
  color: var(--red);
}
 
.btn-danger:hover {
  background: rgba(240, 76, 61, 0.15);
  border-color: var(--red);
  color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(240, 76, 61, 0.15);
}
 
.btn-sm {
  padding: 8px 18px;
  font-size: 13px;
}

/* ============================================
   HERO SECTION (Homepage)
   ============================================ */
.hero {
  padding: 18px 0 0;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}
 
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -120px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(240, 76, 61,0.06) 0%, transparent 68%);
  pointer-events: none;
  animation: pulse-glow 7s ease-in-out infinite;
}
 
@keyframes pulse-glow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.08); }
}
 
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 14px;
}
 
.kicker::before {
  content: '';
  width: 18px; height: 2px;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}
 
.hero h1 {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(42px, 7.5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 25px;
  color: var(--text);
}
 
.hero h1 em {
  font-style: normal;
  position: relative;
  display: inline-block;
}
 
.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}
 
.hero .lead {
  max-width: 600px;
  color: var(--muted);
  font-size: 16.5px;
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 34px;
}
 
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
 
.hero-actions .btn,
.hero-actions .btn-secondary {
  min-width: 160px;
  justify-content: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.75fr 0.62fr;
  align-items: center;
  grid-gap: 34px;
  gap: 34px;
  padding: 26px 0 32px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-image-copy {
  margin-bottom: 14px;
}

.hero-kicker {
  margin-bottom: 0;
  font-size: clamp(13px, 1.25vw, 17px);
  letter-spacing: 0.2em;
  font-weight: 900;
  color: var(--red);
  text-shadow: 0 1px 0 rgba(240, 76, 61, 0.12);
}

.hero-kicker-brand {
  color: var(--text);
  font-weight: 900;
}

.hero-kicker::before {
  width: 26px;
  height: 3px;
}

.hero-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  isolation: isolate;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.hero-banner::before {
  content: '';
  position: absolute;
  inset: -20% auto auto -12%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 76, 61, 0.34) 0%, rgba(240, 76, 61, 0) 68%);
  pointer-events: none;
  z-index: 2;
}

.hero-banner::after {
  content: '';
  position: absolute;
  inset: auto -14% -28% auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 255, 0.2) 0%, rgba(0, 180, 255, 0) 70%);
  pointer-events: none;
  z-index: 2;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.hero-banner-shine {
  position: absolute;
  inset: -10% auto -10% -45%;
  width: 38%;
  transform: skewX(-18deg);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.18) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transition: left 0.65s ease, opacity 0.35s ease;
}

.hero-banner-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: scale(1.01);
  transition: transform 0.5s ease, filter 0.35s ease;
}

.hero-banner:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 76, 61, 0.35);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(240, 76, 61, 0.16) inset,
    0 0 24px rgba(240, 76, 61, 0.16);
}

.hero-banner:hover .hero-banner-image {
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.04) brightness(1.03);
}

.hero-banner:hover::after {
  transform: translate(-8px, -8px) scale(1.06);
  opacity: 0.95;
}

.hero-banner:hover .hero-banner-shine {
  left: 115%;
  opacity: 1;
}

.hero-actions {
  justify-self: end;
  margin-right: -8px;
}

.hero-process-steps {
  display: flex;
  flex-direction: column;
  background: var(--iute-fog); 
  padding: 12px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.hero-step-arrow {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 20px;
  text-decoration: none;
  background: transparent;
  border-radius: var(--radius-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 8px;
  overflow: hidden;
}

.hero-step-arrow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

.hero-step-arrow:last-child {
  margin-bottom: 0;
}

.hero-step-arrow .step-num {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 800;
  color: var(--red);
  opacity: 0.5;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.hero-step-arrow .step-text {
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: 0.5px;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.hero-step-arrow:hover::before {
  left: 100%;
}

.hero-step-arrow:hover {
  background: var(--panel); 
  transform: translateX(-8px);
  box-shadow: 
    0 12px 30px rgba(240, 76, 61, 0.1),
    inset 0 1px 0 rgba(240, 76, 61, 0.1);
}

.hero-step-arrow:hover .step-text {
  color: var(--red);
}

.hero-step-arrow:hover .step-num {
  opacity: 1;
  color: var(--red);
  transform: scale(1.2);
}

/* ============================================
   FEATURE CARDS (Glassmorphism)
   ============================================ */
.feature-card {
  position: relative;
  background: linear-gradient(135deg, rgba(240, 76, 61, 0.12) 0%, rgba(240, 76, 61, 0.08) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid rgba(240, 76, 61, 0.25);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 8px 32px rgba(240, 76, 61, 0.08), inset 0 1px 0 rgba(240, 76, 61, 0.1);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
  border-radius: var(--radius-lg);
}
 
.feature-card h3 {
  color: #000000;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
  position: relative;
  z-index: 2;
}
 
.feature-card p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 14.5px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}
 
.feature-card:hover {
  transform: translateY(-12px);
  background: linear-gradient(135deg, rgba(240, 76, 61, 0.2) 0%, rgba(240, 76, 61, 0.15) 100%);
  border-color: rgba(240, 76, 61, 0.5);
  box-shadow: 
    0 25px 50px rgba(240, 76, 61, 0.15),
    0 0 40px rgba(240, 76, 61, 0.2),
    inset 0 1px 0 rgba(240, 76, 61, 0.2);
}
 
.feature-icon {
  background: rgba(240, 76, 61, 0.2);
  border: 2px solid rgba(240, 76, 61, 0.3);
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 24px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  color: #D63428;
}

.feature-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: radial-gradient(circle at 30% 30%, rgba(240, 76, 61, 0.2), transparent);
}
 
.feature-card:hover .feature-icon {
  transform: scale(1.15) rotate(8deg);
  background: rgba(240, 76, 61, 0.35);
  box-shadow: 0 0 20px rgba(240, 76, 61, 0.25);
}

/* ============================================
   CARDS & GRIDS
   ============================================ */
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-card);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
 
.card:hover {
  border-color: rgba(240, 76, 61, 0.3);
  transform: translateY(-6px);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.12),
    0 0 30px rgba(240, 76, 61, 0.08);
}

.card:hover::before {
  opacity: 1;
}
 
.card-featured {
  border-color: var(--red-border);
  background: linear-gradient(145deg, rgba(240, 76, 61, 0.02) 0%, #FFFFFF 100%);
  box-shadow: 
    0 0 0 1px rgba(240, 76, 61, 0.08), 
    var(--shadow-card),
    0 0 20px rgba(240, 76, 61, 0.05);
}

.grid { display: grid; grid-gap: 20px; gap: 20px; }
.grid-2 { display: grid; grid-gap: 20px; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { display: grid; grid-gap: 20px; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { display: grid; grid-gap: 16px; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

/* ============================================
   FORMS
   ============================================ */
.form-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
  border: 2px solid rgba(240, 76, 61, 0.15);
  border-radius: var(--radius-xl);
  padding: 40px 35px;
  box-shadow: 
    0 8px 30px rgba(0, 0, 0, 0.08),
    0 0 30px rgba(240, 76, 61, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), #D63428, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.form-card:hover::before {
  opacity: 1;
}

.form-card:hover {
  border-color: rgba(240, 76, 61, 0.3);
  box-shadow: 
    0 16px 48px rgba(0, 0, 0, 0.12),
    0 0 40px rgba(240, 76, 61, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transform: translateY(-6px);
}
 
.form-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 5px;
  color: var(--text);
}
 
.form-subtitle {
  color: var(--muted);
  font-size: 13.5px;
  margin-bottom: 24px;
  line-height: 1.65;
  font-weight: 400;
}
 
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 14px;
  gap: 14px;
}
 
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
 
.label {
  font-size: 12.5px;
  font-weight: 600;
  color: #000000;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
 
.input, .textarea, .select {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius-md);
  padding: 12px 15px;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}
 
.input:focus, .textarea:focus, .select:focus {
  border-color: rgba(240, 76, 61, 0.5);
  box-shadow: 
    0 0 0 3px rgba(240, 76, 61, 0.08),
    0 0 12px rgba(240, 76, 61, 0.1);
  background: #FFFFFF;
}
 
.input::placeholder, .textarea::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
 
.textarea {
  min-height: 120px;
  resize: vertical;
}
 
.file-upload-wrapper { position: relative; }
 
.file-upload-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  width: 100%;
  background: linear-gradient(135deg, #FFFFFF, #FAFAFA);
  border: 2px dashed rgba(240, 76, 61, 0.25);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--red);
  font-size: 14px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.file-upload-label::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(240, 76, 61, 0.1), transparent);
  transition: left 0.6s ease;
}

.file-upload-label:hover::before {
  left: 100%;
}
 
.file-upload-label:hover {
  border-color: var(--red);
  background: linear-gradient(135deg, rgba(240, 76, 61, 0.03), #FFFFFF);
  color: var(--red-dark);
  box-shadow: 0 8px 20px rgba(240, 76, 61, 0.12);
}
 
.file-upload-label .icon { 
  font-size: 20px; 
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.file-upload-label:hover .icon {
  transform: scale(1.25) rotate(5deg);
}
 
.file-upload-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
}

.file-uploaded-card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #F04C3D 0%, #D63428 100%);
  border: 2px solid rgba(240, 76, 61, 0.3);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 
    0 8px 24px rgba(240, 76, 61, 0.25),
    0 0 20px rgba(240, 76, 61, 0.15);
  position: relative;
  overflow: hidden;
  animation: slide-in-right 0.5s ease both;
  width: -moz-fit-content;
  width: fit-content;
}

.file-uploaded-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.6s ease;
}

.file-uploaded-card:hover::before {
  left: 100%;
}

.file-uploaded-card:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 16px 40px rgba(240, 76, 61, 0.4),
    0 0 30px rgba(240, 76, 61, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}

.file-uploaded-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.file-uploaded-card:hover .file-uploaded-icon {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.file-uploaded-content {
  flex: 1 1;
  min-width: 0;
}

.file-uploaded-label {
  font-size: 11px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.file-uploaded-filename {
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  word-break: break-word;
  margin-bottom: 4px;
  line-height: 1.4;
}

.file-uploaded-hint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.file-uploaded-arrow {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
  transition: all 0.3s ease;
  font-weight: 800;
}

.file-uploaded-card:hover .file-uploaded-arrow {
  color: #FFFFFF;
  transform: translateX(6px);
}
 
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.terms-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.55;
}

.terms-checkbox {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--red);
  flex-shrink: 0;
}

.terms-link {
  color: var(--red-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  font-weight: 700;
}

.terms-link:hover {
  color: var(--red);
}

/* ============================================
   REGISTER PAGE
   ============================================ */
.register-hero {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, #F8F8FA 0%, #FFFFFF 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.register-hero::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(240, 76, 61,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.register-hero-content {
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.register-hero .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 16px;
}

.register-hero .kicker::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.register-hero h1 {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(36px, 6vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text);
}

.register-lead {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 550px;
}

.register-form-section {
  padding: 48px 0 24px;
}

.register-form-section .form-card {
  max-width: 760px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-xl);
  transition: all var(--transition);
}

.register-form-section .form-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* ============================================
   TEAMS PAGE
   ============================================ */
.teams-hero {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, #F8F8FA 0%, #FFFFFF 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.teams-hero::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(240, 76, 61,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.teams-hero-content {
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.teams-hero .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 16px;
}

.teams-hero .kicker::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.teams-hero h1 {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(36px, 6vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text);
}

.teams-lead {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 550px;
}

.teams-section {
  padding: 48px 0 64px;
}

/* Team Cards */
.team-card {
  background: linear-gradient(145deg, #FFFFFF, #FAFAFA);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), #D63428, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(240, 76, 61, 0.03) 0%, transparent 70%);
  opacity: 0;
  transition: all 0.4s ease;
  pointer-events: none;
}

.team-card:hover::before {
  opacity: 1;
}

.team-card:hover::after {
  opacity: 1;
  width: 300px;
  height: 300px;
}

.team-card:hover {
  border-color: rgba(240, 76, 61, 0.2);
  transform: translateY(-10px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.12),
    0 0 30px rgba(240, 76, 61, 0.08);
}

.team-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--text);
}

.team-vote-count {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid var(--red-border);
  background: var(--red-soft);
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 12px;
  margin-bottom: 16px;
}

.team-faculty {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

.team-participants-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 8px;
}

.team-participants {
  font-size: 15px;
  color: var(--text-soft);
  margin-bottom: 24px;
  font-weight: 500;
  line-height: 1.7;
}

.team-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.team-actions .btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

.empty-state {
  text-align: center;
  padding: 60px 40px;
}

.empty-state h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text);
}

.empty-state .lead {
  color: var(--muted);
  max-width: 400px;
  margin: 0 auto;
}

/* ============================================
   TEAM DETAILS PAGE
   ============================================ */
.team-details-hero {
  padding: 50px 0 30px;
  background: linear-gradient(135deg, #F8F8FA 0%, #FFFFFF 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.team-details-hero::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(240, 76, 61,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.team-details-hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.team-details-hero .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 16px;
}

.team-details-hero .kicker::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.team-details-hero h1 {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(36px, 6vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 0;
  color: var(--text);
}

.team-details-section {
  padding: 48px 0 80px;
}

.team-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 32px;
  gap: 32px;
}

.team-info-card,
.team-video-card {
  background: linear-gradient(145deg, #FFFFFF, #FAFAFA);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.team-info-card::before,
.team-video-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), #D63428, transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-info-card:hover::before,
.team-video-card:hover::before {
  transform: scaleX(1);
}

.team-info-card:hover,
.team-video-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.12),
    0 0 30px rgba(240, 76, 61, 0.08);
  border-color: rgba(240, 76, 61, 0.15);
}

.team-info-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}

.team-info-icon {
  font-size: 28px;
}

.team-info-header h2 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0;
}

.team-participants-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.participant-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-soft);
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
}

.participant-bullet {
  color: var(--red);
  font-size: 18px;
  font-weight: 800;
}

.team-actions-details {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.team-actions-details .btn {
  padding: 14px 28px;
  font-size: 15px;
}

.team-video {
  width: 100%;
  border-radius: var(--radius-lg);
  background: #000;
  margin-top: 8px;
}

/* ============================================
   UPLOAD PAGE
   ============================================ */
.upload-hero {
  padding: 50px 0 30px;
  background: linear-gradient(135deg, #F8F8FA 0%, #FFFFFF 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.upload-hero::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(240, 76, 61,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.upload-hero-content {
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.upload-hero .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 16px;
}

.upload-hero .kicker::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.upload-hero h1 {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(36px, 6vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text);
}

.upload-lead {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 550px;
}

.upload-section {
  padding: 48px 0 80px;
}

.upload-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 32px;
  gap: 32px;
  border: 3px solid rgba(240, 76, 61, 0.2);
  border-radius: var(--radius-xl);
  padding: 40px;
  background: linear-gradient(135deg, rgba(240, 76, 61, 0.01) 0%, rgba(240, 76, 61, 0.005) 100%);
  transition: all 0.3s ease;
}

.upload-grid:hover {
  border-color: rgba(240, 76, 61, 0.3);
  background: linear-gradient(135deg, rgba(240, 76, 61, 0.015) 0%, rgba(240, 76, 61, 0.01) 100%);
  box-shadow: 0 0 30px rgba(240, 76, 61, 0.08);
}

.upload-card {
  background: linear-gradient(145deg, #FFFFFF, #FAFAFA);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.upload-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(240, 76, 61, 0.03), transparent);
  transition: all 0.4s ease;
  pointer-events: none;
}

.upload-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.12),
    0 0 30px rgba(240, 76, 61, 0.08);
  border-color: rgba(240, 76, 61, 0.15);
}

.upload-card:hover::before {
  right: -20px;
  width: 250px;
  height: 250px;
}

.upload-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.upload-icon {
  font-size: 28px;
}

.upload-card .form-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0;
}

.upload-card .form-subtitle {
  color: var(--text-soft);
  font-size: 13px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.file-hint {
  font-size: 13px;
  font-weight: 600;
  color: #5A5F68;
  margin-top: 8px;
  line-height: 1.5;
  display: block;
}

.upload-files-list {
  display: grid;
  grid-gap: 14px;
  gap: 14px;
}

.upload-file-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px;
}

.upload-file-title {
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--text);
}

.upload-file-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 28px 0;
  border: none;
}

input[type="file"] {
  display: none;
}

.form-group input[type="file"] {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
}

.form-group input[type="file"]::-webkit-file-upload-button {
  background: linear-gradient(135deg, var(--iute-red) 0%, #D63428 100%);
  color: #fff;
  border: none;
  padding: 12px 24px;
  margin-right: 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(240, 76, 61, 0.25);
}

.form-group input[type="file"]::file-selector-button {
  background: linear-gradient(135deg, var(--iute-red) 0%, #D63428 100%);
  color: #fff;
  border: none;
  padding: 12px 24px;
  margin-right: 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(240, 76, 61, 0.25);
}

.form-group input[type="file"]::-webkit-file-upload-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(240, 76, 61, 0.35);
  filter: brightness(1.08);
}

.form-group input[type="file"]::file-selector-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(240, 76, 61, 0.35);
  filter: brightness(1.08);
}

.form-group input[type="file"]::-webkit-file-upload-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(240, 76, 61, 0.25);
}

.form-group input[type="file"]::file-selector-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(240, 76, 61, 0.25);
}

.form-group input[type="file"]:disabled::-webkit-file-upload-button {
  background: rgba(0, 0, 0, 0.08);
  color: var(--muted);
  cursor: not-allowed;
  box-shadow: none;
}

.form-group input[type="file"]:disabled::file-selector-button {
  background: rgba(0, 0, 0, 0.08);
  color: var(--muted);
  cursor: not-allowed;
  box-shadow: none;
}

.form-group input[type="file"]:disabled::-webkit-file-upload-button:hover {
  transform: none;
  box-shadow: none;
}

.form-group input[type="file"]:disabled::file-selector-button:hover {
  transform: none;
  box-shadow: none;
}

.file-upload-label.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.file-upload-label.disabled:hover {
  border-color: rgba(0,0,0,0.15);
  background: #FFFFFF;
}

/* ============================================
   VOTE PAGE
   ============================================ */
.vote-hero {
  padding: 50px 0 30px;
  background: linear-gradient(135deg, #F8F8FA 0%, #FFFFFF 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.vote-hero::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(240, 76, 61,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.vote-hero-content {
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.vote-hero .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 16px;
}

.vote-hero .kicker::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.vote-hero h1 {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(36px, 6vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text);
}

.vote-lead {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 550px;
}

.vote-section {
  padding: 48px 0 80px;
}

.vote-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  grid-gap: 32px;
  gap: 32px;
}

.vote-form-card {
  background: linear-gradient(145deg, #FFFFFF, #FAFAFA);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  position: -webkit-sticky;
  position: sticky;
  top: 88px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vote-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), #D63428, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vote-form-card:hover::before {
  opacity: 1;
}

.vote-form-card:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.1),
    0 0 25px rgba(240, 76, 61, 0.06);
  border-color: rgba(240, 76, 61, 0.15);
}

.vote-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.vote-icon {
  font-size: 28px;
}

.vote-form-card h2 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--text);
}

.vote-card-subtitle {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.verified-badge {
  background: rgba(72,216,128,0.12);
  border: 1px solid rgba(72,216,128,0.25);
  border-radius: var(--radius-md);
  padding: 12px;
  margin: 16px 0;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #2a8a4a;
}

.verified-badge span {
  margin-right: 6px;
  font-size: 16px;
}

.selected-indicator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--red-soft);
  border: 1px solid var(--red-border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin: 16px 0;
  font-size: 14px;
  font-weight: 600;
}

.selected-indicator .count {
  background: linear-gradient(135deg, var(--red), #D63428);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.vote-submit-btn {
  background: linear-gradient(135deg, var(--red), #D63428);
}

.vote-lock-btn:disabled {
  cursor: not-allowed;
  opacity: 0.9;
}

.vote-lock-btn:disabled:hover {
  transform: none;
  box-shadow: none !important;
}

.vote-teams-list {
  min-width: 0;
}

.vote-teams-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.teams-count {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
}

.teams-hint {
  font-size: 13px;
  color: var(--muted);
}

/* ============================================
   ADMIN PAGE
   ============================================ */
.admin-hero {
  padding: 40px 0 30px;
  background: linear-gradient(135deg, #F8F8FA 0%, #FFFFFF 100%);
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.admin-hero-content {
  max-width: 700px;
}

.admin-hero .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 16px;
}

.admin-hero .kicker::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.admin-hero h1 {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--text);
}

.admin-hero p {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 550px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  grid-gap: 14px;
  gap: 14px;
  margin-bottom: 28px;
}
 
.stat-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(240, 76, 61, 0.05), transparent);
  transition: all 0.4s ease;
}

.stat-card:hover::before {
  right: -20px;
  width: 180px;
  height: 180px;
}

.stat-card:hover {
  border-color: rgba(240, 76, 61, 0.2);
  transform: translateY(-4px);
  box-shadow: 
    0 12px 28px rgba(0, 0, 0, 0.1),
    0 0 20px rgba(240, 76, 61, 0.08);
}
 
.stat-number {
  font-family: var(--font);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--red), #D63428);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 2;
}
 
.stat-label {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 500;
  position: relative;
  z-index: 2;
}
 
.table-wrapper {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.table-wrapper:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
 
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  min-width: 800px;
}
 
.table thead {
  background: linear-gradient(135deg, rgba(240, 76, 61, 0.03), rgba(0, 0, 0, 0.02));
  border-bottom: 2px solid var(--border);
}
 
.table th {
  padding: 13px 16px;
  text-align: left;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
 
.table td {
  padding: 15px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  vertical-align: middle;
  color: var(--text);
}
 
.table tr:last-child td { border-bottom: none; }

.table tbody tr { 
  transition: all 0.2s ease;
}

.table tbody tr:hover { 
  background: linear-gradient(90deg, rgba(240, 76, 61, 0.02), transparent);
}

/* ============================================
   AUTH / LOGIN
   ============================================ */
.auth-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg2) 100%);
}

.auth-page-shell {
  min-height: 100dvh;
  overflow-y: auto;
  padding-bottom: 40px;
}

.auth-wrap-static {
  min-height: calc(100dvh - 190px);
}
 
.auth-card {
  width: 100%;
  max-width: 400px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.1),
    0 0 30px rgba(240, 76, 61, 0.05);
  position: relative;
  overflow: hidden;
  animation: fade-up 0.6s ease both;
}
 
.auth-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), #D63428, transparent);
}

.auth-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(240, 76, 61, 0.05), transparent);
  pointer-events: none;
}
 
.auth-logo-img {
  width: 80px;
  height: auto;
  object-fit: contain;
}
 
.auth-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  margin-top: 20px;
  color: var(--text);
}
 
.auth-subtitle {
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 400;
  margin-bottom: 26px;
  line-height: 1.65;
}

.auth-inline-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
}

.auth-inline-link:hover {
  text-decoration: underline;
}

/* ============================================
   BADGES & NOTICES
   ============================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  padding: 4px 11px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
 
.badge::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
 
.badge-pending  { background: rgba(255,170,0,0.1); color: #c97e00; border: 1px solid rgba(255,170,0,0.2); }
.badge-accepted { background: rgba(72,216,128,0.1); color: #2a8a4a; border: 1px solid rgba(72,216,128,0.2); }
.badge-rejected { background: rgba(240, 76, 61,0.08); color: var(--red); border: 1px solid rgba(240, 76, 61,0.15); }
 
.notice {
  border-radius: var(--radius-md);
  padding: 13px 16px;
  font-size: 13.5px;
  font-weight: 500;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.02);
  line-height: 1.6;
}
 
.notice-success { background: rgba(72,216,128,0.08); border-color: rgba(72,216,128,0.15); color: #2a8a4a; }
.notice-error   { background: rgba(240, 76, 61,0.05); border-color: var(--red-border); color: var(--red); }
.notice-info    { background: rgba(80,155,255,0.06); border-color: rgba(80,155,255,0.15); color: #2a6bb0; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 24px 0 28px;
  color: var(--muted);
  border-top: 2px solid var(--border);
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.98) 100%);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.05);
}
 
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
 
.footer-brand {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
  transition: all 0.3s ease;
}

.footer-brand:hover {
  color: var(--red);
}
 
.footer-brand .accent {
  color: var(--red);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-left: 6px;
}
 
.footer-text { 
  font-size: 13px; 
  font-weight: 400;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex: 1 1;
  gap: 16px;
}

.footer-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 2px solid transparent;
  padding-bottom: 1px;
}

.footer-link:hover {
  color: var(--red);
  border-bottom-color: var(--red);
  transform: translateY(-1px);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
 
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slide-in-right {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes bounce-subtle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(240, 76, 61, 0.3); }
  50% { box-shadow: 0 0 30px rgba(240, 76, 61, 0.5); }
}
 
.animate-fade-up { animation: fade-up 0.5s ease both; }
.animate-fade-in { animation: fade-in 0.4s ease both; }
.animate-slide-in { animation: slide-in-right 0.6s ease both; }
 
.delay-1 { animation-delay: 0.08s; }
.delay-2 { animation-delay: 0.18s; }
.delay-3 { animation-delay: 0.28s; }
.delay-4 { animation-delay: 0.38s; }

/* ============================================
   UTILITIES
   ============================================ */
.text-red    { color: var(--red); }
.text-muted  { color: var(--muted); }
.text-sm     { font-size: 13px; }
.text-xs     { font-size: 11px; }
.text-center { text-align: center; }
.fw-bold     { font-weight: 700; }
.fw-xbold    { font-weight: 800; }
.mt-sm       { margin-top: 10px; }
.mt-md       { margin-top: 16px; }
.mt-lg       { margin-top: 26px; }
.mb-sm       { margin-bottom: 10px; }
.mb-md       { margin-bottom: 16px; }
.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.items-center { align-items: center; }
.gap-sm      { gap: 7px; }
.gap-md      { gap: 14px; }
 
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #F0F0F0; }
::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,0,0,0.25); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 26px;
    padding: 18px 0 24px;
  }

  .hero-image-copy {
    text-align: center;
  }

  .hero-image-copy .hero-kicker {
    justify-content: center;
  }
  
  .hero-actions {
    justify-content: center;
    display: flex;
    justify-self: center;
    margin-right: 0;
  }

  .hero-step-arrow:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 860px) {
  .nav {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      'brand right'
      'links links';
    align-items: center;
    grid-gap: 12px;
    gap: 12px;
    padding: 12px 0;
  }
  .brand { grid-area: brand; }
  .nav-right { grid-area: right; justify-content: flex-end; gap: 10px; }
  .nav-links {
    grid-area: links;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-link { width: auto; padding: 8px 14px; font-size: 13px; }
  .lang-switch a { padding: 7px 14px; }

  main { padding-bottom: 36px; }
  .footer {
    position: static;
    padding: 18px 0 20px;
    box-shadow: none;
  }
  .hero h1 { font-size: clamp(36px, 10vw, 56px); }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 22px 18px; }
  .auth-card { padding: 30px 22px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  
  .register-hero { padding: 40px 0 30px; }
  .register-hero h1 { font-size: 32px; }
  .register-form-section { padding: 32px 0 60px; }
  
  .teams-hero { padding: 40px 0 30px; }
  .teams-hero h1 { font-size: 32px; }
  .teams-section { padding: 32px 0 48px; }
  
  .team-details-hero { padding: 40px 0 25px; }
  .team-details-hero h1 { font-size: 32px; }
  .team-details-section { padding: 32px 0 60px; }
  .team-details-grid { grid-template-columns: 1fr; gap: 24px; }
  .team-info-card, .team-video-card { padding: 24px; }
  
  .upload-hero { padding: 40px 0 25px; }
  .upload-hero h1 { font-size: 32px; }
  .upload-section { padding: 32px 0 60px; }
  .upload-grid { grid-template-columns: 1fr; gap: 24px; }
  .upload-card { padding: 24px; }
  
  .vote-hero { padding: 40px 0 25px; }
  .vote-hero h1 { font-size: 32px; }
  .vote-section { padding: 32px 0 60px; }
  .vote-grid { grid-template-columns: 1fr; gap: 28px; }
  .vote-form-card { position: relative; top: 0; }
  .vote-teams-header { margin-top: 8px; }
}

  /* ============================================
     LEARN MORE PAGE
     ============================================ */
  .learn-more-hero {
    padding: 38px 0 24px;
    position: relative;
    overflow: hidden;
  }

  .learn-more-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 76, 61, 0.12) 0%, rgba(240, 76, 61, 0) 68%);
    pointer-events: none;
  }

  .learn-more-hero-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .learn-more-hero h1 {
    margin: 0;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.04;
    letter-spacing: -0.02em;
    color: var(--text);
  }

  .learn-more-hero p {
    margin: 0;
    max-width: 860px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
  }

  .learn-more-hero .kicker {
    color: var(--red);
  }

  .learn-more-section {
    padding: 12px 0 68px;
  }

  .learn-more-shell {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: min(1020px, 100%);
    margin: 0 auto;
  }

  .learn-brief-panel {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 22px;
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }

  .learn-brief-panel:hover {
    transform: translateY(-2px);
    border-color: rgba(240, 76, 61, 0.22);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
  }

  .learn-brief-panel h2 {
    margin: 0 0 12px;
    color: var(--text);
    font-size: clamp(24px, 2.2vw, 33px);
    letter-spacing: -0.015em;
    line-height: 1.1;
  }

  .learn-brief-panel p {
    margin: 0 0 12px;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.78;
  }

  .learn-brief-panel p:last-child {
    margin-bottom: 0;
  }

  .learn-task-text {
    font-weight: 700;
    color: var(--text) !important;
    letter-spacing: 0.01em;
  }

  .learn-bullet-list {
    margin: 0;
    padding-left: 20px;
    display: grid;
    grid-gap: 8px;
    gap: 8px;
  }

  .learn-bullet-list li {
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.7;
  }

  .learn-deliverables {
    background: linear-gradient(145deg, rgba(240, 76, 61, 0.08), rgba(240, 76, 61, 0.03));
    border: 1px solid rgba(240, 76, 61, 0.2);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: 0 12px 34px rgba(240, 76, 61, 0.08);
  }

  .learn-deliverables h2 {
    margin: 0 0 14px;
    color: var(--text);
    font-size: clamp(26px, 2.5vw, 34px);
    letter-spacing: -0.02em;
  }

  .learn-deliverable-card {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(240, 76, 61, 0.15);
    border-radius: var(--radius-md);
    padding: 18px;
    margin-top: 12px;
  }

  .learn-deliverable-card h3 {
    margin: 0 0 10px;
    color: var(--text);
    font-size: clamp(18px, 1.8vw, 25px);
    line-height: 1.25;
  }

  .learn-deliverable-card p {
    margin: 0 0 10px;
    color: var(--text-soft);
    font-size: 14.5px;
    line-height: 1.75;
  }

  .learn-deliverable-card p:last-child {
    margin-bottom: 0;
  }

  .learn-deliverable-group {
    margin-top: 12px;
    border-top: 1px dashed rgba(240, 76, 61, 0.24);
    padding-top: 10px;
  }

  .learn-deliverable-group h4 {
    margin: 0 0 8px;
    color: var(--red-dark);
    font-size: 14px;
    letter-spacing: 0.01em;
    text-transform: none;
    font-weight: 800;
  }

  .learn-quote {
    margin: 0;
    border-left: 4px solid var(--red);
    background: linear-gradient(120deg, rgba(240, 76, 61, 0.09), rgba(255, 255, 255, 0.85));
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 18px 20px;
    color: var(--text);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.65;
  }

  .learn-more-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-gap: 18px;
    gap: 18px;
  }

  .learn-more-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.72));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    box-shadow: var(--shadow-card);
  }

  .learn-more-card h2 {
    margin: 0 0 10px;
    color: var(--text);
    font-size: 21px;
    line-height: 1.2;
  }

  .learn-more-card p {
    margin: 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.75;
  }

  .learn-more-list {
    margin: 14px 0 0;
    padding-left: 18px;
    display: grid;
    grid-gap: 8px;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
  }

  @media (max-width: 1080px) {
    .learn-more-grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 740px) {
    .learn-more-hero {
      padding: 30px 0 16px;
    }

    .learn-brief-panel {
      padding: 18px 16px;
    }

    .learn-deliverables {
      padding: 16px;
    }

    .learn-deliverable-card {
      padding: 14px;
    }

    .learn-quote {
      font-size: 15px;
      padding: 14px 14px;
    }

    .learn-more-grid {
      grid-template-columns: 1fr;
    }

    .learn-more-card {
      padding: 20px 16px;
    }
  }

@media (max-width: 560px) {
  .container {
    width: min(1160px, calc(100% - 24px));
  }

  .brand-logo {
    width: 84px;
  }

  .nav {
    gap: 10px;
    padding: 10px 0;
  }

  .nav-links {
    gap: 5px;
  }

  .nav-right {
    gap: 8px;
  }

  .lang-switch {
    padding: 3px;
  }

  .lang-switch a {
    font-size: 12px;
    padding: 7px 12px;
  }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn,
  .hero-actions .btn-secondary { width: 100%; }
  .hero-process-steps { width: 100%; }
  .hero-step-arrow { padding: 18px 14px; }

  .form-card { padding: 18px 14px; }
  .auth-wrap { padding: 24px 12px; }
  .auth-card { padding: 24px 16px; }

  .table { min-width: 640px; }

  .team-actions { flex-direction: column; }
  .stat-grid { grid-template-columns: 1fr; }
  .nav-link { text-align: center; }
  
  .team-info-header h2 { font-size: 18px; }
  .participant-item { font-size: 14px; }
  .team-actions-details .btn { width: 100%; text-align: center; }
  
  .upload-card-header { flex-wrap: wrap; }
  .form-actions { flex-direction: column; }
  .form-actions .btn,
  .form-actions .btn-secondary { width: 100%; justify-content: center; }
  
  .vote-card-header { flex-wrap: wrap; }
  .vote-teams-header { flex-direction: column; align-items: flex-start; }
  .vote-form-card { padding: 20px; }
}


