:root {
  --primary: #c8102e;
  --primary-600: #a50d25;
  --primary-700: #8a0b1f;
  --primary-50: #fef2f2;
  --primary-100: #fee2e2;
  --gold: #d4af37;
  --gold-light: #f4e4a6;
  --bg: #ffffff;
  --surface: #f8fafc;
  --surface-2: #f1f5f9;
  --text: #1e293b;
  --text-light: #475569;
  --muted: #64748b;
  --dark: #0f172a;
  --shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,.1), 0 10px 10px -5px rgba(0,0,0,.04);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,.25);
  --gradient-primary: linear-gradient(135deg, #c8102e 0%, #a50d25 100%);
  --gradient-gold: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
  --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  margin: 0 0 12px;
  line-height: 1.25;
  color: var(--dark);
  font-family: "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-weight: 700;
}

p { margin: 0 0 16px; color: var(--text); }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: min(1400px, 98%);
  margin: 0 auto;
}

section { padding: 56px 0; }

.hero {
  position: relative;
  background: var(--gradient-hero);
  padding: 120px 0 100px;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><g id="music-notes"><path d="M50,50 Q60,40 70,50 Q80,60 70,70 Q60,80 50,70 Q40,60 50,50 Z" fill="rgba(255,255,255,0.1)"/><line x1="70" y1="70" x2="70" y2="120" stroke="rgba(255,255,255,0.1)" stroke-width="2"/><path d="M200,80 Q210,70 220,80 Q230,90 220,100 Q210,110 200,100 Q190,90 200,80 Z" fill="rgba(255,255,255,0.08)"/><line x1="220" y1="100" x2="220" y2="150" stroke="rgba(255,255,255,0.08)" stroke-width="2"/><path d="M350,60 Q360,50 370,60 Q380,70 370,80 Q360,90 350,80 Q340,70 350,60 Z" fill="rgba(255,255,255,0.06)"/><line x1="370" y1="80" x2="370" y2="130" stroke="rgba(255,255,255,0.06)" stroke-width="2"/></g></defs><use href="%23music-notes" transform="translate(0,0)"/><use href="%23music-notes" transform="translate(400,100)"/><use href="%23music-notes" transform="translate(800,50)"/><use href="%23music-notes" transform="translate(200,300)"/><use href="%23music-notes" transform="translate(600,350)"/><use href="%23music-notes" transform="translate(1000,300)"/></svg>');
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
  pointer-events: none;
}
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes slideInUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero .kicker { 
  color: var(--gold-light); 
  letter-spacing: .12em; 
  text-transform: uppercase; 
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}
.hero h1 { 
  font-size: clamp(48px, 6vw, 72px); 
  margin-bottom: 24px; 
  color: white;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero p { 
  font-size: clamp(18px, 2.5vw, 22px); 
  max-width: 800px; 
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin-bottom: 32px;
}
.hero .actions { 
  display: flex; 
  gap: 16px; 
  flex-wrap: wrap; 
  margin-top: 32px; 
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  z-index: 1;
  pointer-events: auto;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
.btn:hover::before {
  left: 100%;
}
.btn:hover { 
  transform: translateY(-2px); 
  box-shadow: var(--shadow-xl);
}
.btn:active { transform: translateY(0); }
.btn.primary { 
  background: var(--gradient-primary); 
  color: #fff; 
  border: none;
}
.btn.primary:hover { 
  background: linear-gradient(135deg, #a50d25 0%, #8a0b1f 100%);
  box-shadow: 0 25px 50px -12px rgba(200,16,46,0.4);
}
.btn.ghost { 
  background: rgba(255,255,255,0.1); 
  color: white; 
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}
.btn.ghost:hover { 
  background: rgba(255,255,255,0.2); 
  border-color: rgba(255,255,255,0.5);
}

.section-head { 
  margin-bottom: 48px; 
  text-align: center;
}
.section-head .eyebrow { 
  color: var(--gold); 
  text-transform: uppercase; 
  letter-spacing: .12em; 
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
  display: inline-block;
  padding: 8px 20px;
  background: var(--primary-50);
  border-radius: 20px;
  border: 1px solid var(--primary-100);
}
.section-head h2 { 
  font-size: clamp(32px, 4vw, 48px); 
  margin-bottom: 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.section-head p.desc { 
  color: var(--text-light); 
  max-width: 800px; 
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
}

.grid {
  display: grid;
  gap: 32px;
}
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 32px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.card .icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}
.card .icon.gold {
  background: var(--gradient-gold);
}
.card .icon.blue {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}
.card .icon.green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.card {
  animation: slideInUp 0.6s ease-out;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }

.icon {
  animation: pulse 2s ease-in-out infinite;
}

.icon:nth-child(1) { animation-delay: 0s; }
.icon:nth-child(2) { animation-delay: 0.5s; }
.icon:nth-child(3) { animation-delay: 1s; }
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.card:hover::before {
  transform: scaleX(1);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-100);
}
.card .title { 
  font-weight: 700; 
  margin-bottom: 16px; 
  font-size: 20px;
  color: var(--dark);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.card .muted { 
  color: var(--text-light); 
  line-height: 1.6;
  font-size: 16px;
}

.surface { 
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  border-top: 1px solid #e2e8f0; 
  border-bottom: 1px solid #e2e8f0; 
  position: relative;
}
.surface::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23e2e8f0" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.5;
  pointer-events: none;
}

table { 
  width: 100%; 
  border-collapse: collapse; 
  border-spacing: 0; 
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
th, td { 
  text-align: left; 
  padding: 20px 24px; 
}
thead th { 
  background: var(--gradient-primary); 
  color: white; 
  font-weight: 700; 
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
}
tbody tr { 
  border-bottom: 1px solid #e2e8f0; 
  transition: all 0.2s ease;
}
tbody tr:hover { 
  background: var(--primary-50); 
  transform: scale(1.01);
}
tbody tr:last-child {
  border-bottom: none;
}

form .field { margin-bottom: 24px; }
label { 
  display: block; 
  font-weight: 700; 
  margin-bottom: 12px; 
  color: var(--dark);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%;
  height: 52px;
  padding: 16px 20px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  background: #fff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 16px;
  font-weight: 500;
}
textarea { 
  min-height: 140px; 
  resize: vertical; 
  height: auto;
  padding-top: 16px;
}
input:focus, select:focus, textarea:focus { 
  outline: none; 
  border-color: var(--primary); 
  box-shadow: 0 0 0 4px rgba(200,16,46,.1);
  transform: translateY(-1px);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff5f6;
  color: var(--primary-700);
  border: 1px solid rgba(200,16,46,.22);
  font-weight: 600;
}

.lead { font-size: 18px; color: var(--muted); }
.muted { color: var(--muted); }

@media (max-width: 992px) {
  .grid.cols-3 { grid-template-columns: 1fr 1fr; }
  .section-head h2 { font-size: clamp(28px, 5vw, 40px); }
}
@media (max-width: 720px) {
  section { padding: 60px 0; }
  .grid.cols-3, .grid.cols-2 { grid-template-columns: 1fr; }
  .hero { padding: 80px 0 60px; }
  .hero h1 { font-size: clamp(36px, 8vw, 56px); }
  .card { padding: 24px; }
  .btn { height: 48px; padding: 0 20px; font-size: 15px; }
}


