/* ========================================
   RESET
======================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ========================================
   ROOT VARIABLES
======================================== */

:root {
  --bg-main: #0f0720;
  --bg-secondary: #1a1038;
  --bg-card: rgba(255, 255, 255, 0.06);

  --accent: #7dd3fc;
  --accent-hover: #38bdf8;

  --text-main: #ffffff;
  --text-muted: #cbd5e1;

  --border: rgba(255, 255, 255, 0.12);

  --shadow:
    0 10px 30px rgba(0, 0, 0, 0.25);

  --radius: 24px;
}

/* ========================================
   BASE STYLES
======================================== */

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  padding-bottom: 60px;

  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  line-height: 1.7;

  background:
    radial-gradient(circle at top left, #2b175d 0%, transparent 35%),
    radial-gradient(circle at bottom right, #142850 0%, transparent 35%),
    var(--bg-main);

  color: var(--text-main);
}

/* ========================================
   LAYOUT
======================================== */

.container {
  width: min(1100px, 92%);
  margin-inline: auto;
}

/* ========================================
   HEADER
======================================== */

header.container {
  padding-top: 40px;
}

/* ========================================
   LOGO
======================================== */

.logo {
  display: flex;
  align-items: center;

  margin-bottom: 60px;
}

.logo img {
  width: 72px;
  height: auto;

  border-radius: 18px;

  box-shadow: var(--shadow);
}

/* ========================================
   HERO SECTION
======================================== */

.price-hero {
  text-align: center;
  margin-bottom: 60px;
}

.price-hero h1 {
  margin-bottom: 18px;

  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
}

.subheading {
  max-width: 700px;
  margin: 0 auto;

  font-size: 1.2rem;
  color: var(--text-muted);
}

/* ========================================
   BACK BUTTON
======================================== */

.back-btn {
  position: fixed;
  top: 25px;
  right: 25px;

  z-index: 1000;

  padding: 12px 18px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);

  color: var(--text-main);
  text-decoration: none;

  backdrop-filter: blur(12px);

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.back-btn:hover {
  transform: translateY(-2px);

  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(125, 211, 252, 0.5);
}

/* ========================================
   PRICE CONTENT
======================================== */

.price-content {
  padding: 50px;
  border-radius: var(--radius);

  background: var(--bg-card);
  border: 1px solid var(--border);

  backdrop-filter: blur(16px);

  box-shadow: var(--shadow);
}

/* ========================================
   SECTION HEADINGS
======================================== */

.price-content h2 {
  position: relative;

  margin-top: 40px;
  margin-bottom: 24px;

  font-size: 1.8rem;
  color: var(--accent);
}

.price-content h2:first-child {
  margin-top: 0;
}

.price-content h2::after {
  content: "";

  display: block;

  width: 60px;
  height: 4px;

  margin-top: 10px;

  border-radius: 999px;

  background: linear-gradient(
    to right,
    var(--accent),
    transparent
  );
}

/* ========================================
   LISTS
======================================== */

.price-content ul {
  display: grid;
  gap: 22px;

  margin-bottom: 30px;

  list-style: none;
}

/* ========================================
   PRICE CARDS
======================================== */

.price-content li {
  padding: 24px;
  border-radius: 20px;

  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);

  transform-style: preserve-3d;
  will-change: transform;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.price-content li:hover {
  transform: translateY(-4px);

  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(125, 211, 252, 0.4);
}

/* ========================================
   TEXT CONTENT
======================================== */

.price-content strong {
  display: block;

  margin-bottom: 6px;

  font-size: 1.05rem;
  font-weight: 700;

  color: var(--text-main);
}

.price-content p {
  margin-top: 40px;

  font-size: 1.05rem;
  color: var(--text-muted);
}

/* ========================================
   SCROLL ANIMATIONS
======================================== */

.hidden {
  opacity: 0;
  transform: translateY(40px);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   FOOTER
======================================== */

footer {
  text-align: center;

  padding: 25px;

  background: var(--bg-secondary);
  color: var(--text-muted);
}

/* ========================================
   RESPONSIVE STYLES
======================================== */

@media (max-width: 768px) {

  body {
    padding-top: 20px;
  }

  .price-content {
    padding: 30px 22px;
  }

  .price-hero {
    margin-bottom: 40px;
  }

  .price-content h2 {
    font-size: 1.5rem;
  }

  .back-btn {
    position: static;
    display: inline-flex;

    margin: 0 auto 30px;
  }
}