:root {
  --primary-rose: #e11d48;
  --primary-gold: #d4af37;
  --rose-light: #fff1f2;
  --rose-dark: #9f1239;
  --gold-light: #fdf6e3;
  --gold-dark: #b8860b;
  --text-dark: #1f2937;
  --text-muted: #6b7280;
  --bg-light: #fffafb;
  --white: #ffffff;
  --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
  background: var(--bg-light);
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: var(--text-dark);
}

.hero-section {
  background: linear-gradient(135deg, var(--rose-dark) 0%, var(--primary-rose) 100%);
  padding: 100px 20px 80px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.hero-section h1 {
  font-weight: 800;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #fff, #fde2e4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-section p {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.tool-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 30px 25px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: left;
  height: 100%;
  border: 1px solid rgba(225, 29, 72, 0.05);
  position: relative;
  overflow: hidden;
}

.tool-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-gold);
}

.tool-card i {
  font-size: 40px;
  color: var(--primary-rose);
  margin-bottom: 20px;
  display: inline-block;
  transition: color 0.3s ease;
}

.tool-card:hover i {
  color: var(--primary-gold);
}

.tool-card h5 {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.tool-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.category-title {
  font-weight: 800;
  margin: 60px 0 30px;
  color: var(--rose-dark);
  border-left: 6px solid var(--primary-gold);
  padding-left: 20px;
  font-size: 1.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer {
  background: var(--white);
  padding: 60px 0 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.btn-premium {
  background: linear-gradient(to right, var(--primary-gold), var(--gold-dark));
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-premium:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  color: white;
}
