:root {
  --bg-color: #050505;
  --surface-color: #121212;
  --surface-hover: #1a1a1a;
  --text-primary: #f5f5f5;
  --text-secondary: #a3a3a3;
  --accent-color: #dd0031; /* Angular Red */
  --accent-hover: #e80a3e;
  --accent-gradient: linear-gradient(135deg, #dd0031 0%, #ff4564 100%);
  --border-color: rgba(255, 255, 255, 0.08);
  --glow-color: rgba(221, 0, 49, 0.15);

  --font-main: "Inter", system-ui, -apple-system, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  text-align: center;
}

p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-hover);
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 1rem auto;
  padding: 0 2rem;
}

section {
  padding: 6rem 0;
  position: relative;
}

/* Background Effects */
.bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: var(--glow-color);
  filter: blur(120px);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

.glow-top {
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}
.glow-bottom {
  bottom: -200px;
  right: -100px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent-gradient);
  color: white;
  box-shadow: 0 4px 15px rgba(221, 0, 49, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  color: black;
  box-shadow: 0 6px 20px rgba(221, 0, 49, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: var(--surface-color);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Header */
header {
  padding: 1.5rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid var(--border-color);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  color: var(--accent-color);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding-top: 6rem;
}

.hero p {
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
  font-size: 1.25rem;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-inline: auto;
}

/* Grid Layouts */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* Cards (Features, Process) */
.card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
  background: var(--surface-hover);
}

/* Cards are animated so the buttons inside should be still */
.card:hover .btn-primary:hover,
.card:hover .btn-secondary:hover {
  transform: none;
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Pricing Section */
.pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card.featured {
  border-color: var(--accent-color);
  box-shadow: 0 0 30px rgba(221, 0, 49, 0.1);
}

.pricing-header {
  margin-bottom: 2rem;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin: 1rem 0;
}

.pricing-price span {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  flex-grow: 1;
  margin-bottom: 2.5rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.pricing-features li::before {
  content: "✓";
  color: var(--accent-color);
  font-weight: bold;
}

.pricing-card .btn {
  width: 100%;
}

/* Expert Section */
.expert-section {
  display: flex;
  align-items: center;
  gap: 4rem;
  background: var(--surface-color);
  border-radius: 24px;
  padding: 4rem;
  border: 1px solid var(--border-color);
}

.expert-image {
  flex-shrink: 0;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: linear-gradient(135deg, #333, #111);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  border: 4px solid var(--border-color);
}

.expert-content h2 {
  text-align: left;
}

/* Footer */
footer {
  border-top: 1px solid var(--border-color);
  padding: 3rem 0;
  text-align: center;
  color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 900px) {
  .expert-section {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  .expert-content h2 {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .pricing-card.featured {
    transform: none;
  }
  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }
  h1 {
    font-size: 2.5rem;
  }
}
