/*
Theme Name: Evolution Play Promo
Theme URI: https://example.com
Author: Custom Theme
Author URI: https://example.com
Description: A premium English WordPress promotional theme for gaming, live entertainment and online play guides. No slot pages included.
Version: 1.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: evolution-play-promo
*/

/* =========================================================
   GLOBAL VARIABLES
========================================================= */

:root {
  --bg: #0b0a08;
  --bg-soft: #17120d;
  --bg-card: #1f1710;
  --bg-card-2: #2b1d13;
  --accent: #ffb545;
  --accent-2: #ff5f6d;
  --accent-3: #ffd36e;
  --purple: #c45cff;
  --text: #fff8ed;
  --muted: #c9b8a3;
  --muted-2: #ffe4bd;
  --border: rgba(255, 213, 140, 0.16);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
  --radius: 28px;
  --radius-lg: 38px;
}

/* =========================================================
   BASE
========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 181, 69, 0.18), transparent 28%),
    radial-gradient(circle at 85% 8%, rgba(255, 95, 109, 0.16), transparent 32%),
    radial-gradient(circle at 55% 38%, rgba(196, 92, 255, 0.11), transparent 35%),
    linear-gradient(180deg, #0b0a08 0%, #14100c 48%, #0b0a08 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  color: var(--muted);
  line-height: 1.78;
  font-size: 17px;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid var(--border);
  background: rgba(11, 10, 8, 0.86);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.logo-mark {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 16px 46px rgba(255, 181, 69, 0.28);
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 10px;
  background: rgba(11, 10, 8, 0.32);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 12px 15px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 800;
  transition: 0.22s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
  background: rgba(255, 213, 140, 0.09);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 213, 140, 0.08);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 900;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 213, 140, 0.07);
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}

/* =========================================================
   COMMON ELEMENTS
========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #170d07;
  font-weight: 900;
  box-shadow: 0 18px 48px rgba(255, 181, 69, 0.24);
  transition: 0.22s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(255, 181, 69, 0.34);
}

.btn-ghost {
  background: rgba(255, 213, 140, 0.08);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.45px;
  text-transform: uppercase;
}

.eyebrow::before,
.section-label::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 26px rgba(255, 181, 69, 0.9);
}

.link {
  color: var(--accent);
  font-weight: 900;
}

/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;
  padding: 100px 0 66px;
}

.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -170px;
  top: -90px;
  border-radius: 50%;
  background: rgba(255, 181, 69, 0.12);
  filter: blur(12px);
  pointer-events: none;
  animation: floatOrb 9s ease-in-out infinite;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 50px;
  align-items: center;
}

.hero h1 {
  max-width: 780px;
  margin: 0 0 24px;
  color: var(--text);
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.92;
  letter-spacing: -3px;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--accent), var(--accent-2), var(--accent-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  max-width: 650px;
  margin: 0;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-badges span {
  display: inline-flex;
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--muted-2);
  background: rgba(255, 213, 140, 0.07);
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 800;
}

.hero-visual {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1fr 0.84fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  perspective: 1200px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 213, 140, 0.12), transparent),
    linear-gradient(180deg, var(--bg-card), var(--bg-card-2));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
}

.feature-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(255, 181, 69, 0.16);
  filter: blur(4px);
}

.feature-card-large {
  grid-row: span 2;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 213, 110, 0.34), transparent 30%),
    radial-gradient(circle at 20% 72%, rgba(255, 181, 69, 0.27), transparent 31%),
    linear-gradient(180deg, #3a2415, #160f0a);
  animation: cardFloat 7s ease-in-out infinite;
}

.feature-card-small {
  animation: subtleLift 8s ease-in-out infinite;
}

.feature-card-small:nth-child(3) {
  animation-delay: 1.4s;
}

.feature-pill {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(255, 213, 140, 0.12);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 12px;
  color: var(--text);
  font-size: 30px;
}

.feature-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 16px;
}

.metric-row {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.metric-line {
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 213, 140, 0.12);
}

.metric-line span {
  display: block;
  width: 74%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  animation: progressPulse 3s ease-in-out infinite;
}

.metric-line:nth-child(2) span {
  width: 88%;
  animation-delay: 0.35s;
}

.metric-line:nth-child(3) span {
  width: 61%;
  animation-delay: 0.7s;
}

/* =========================================================
   TRUST STRIP
========================================================= */

.trust-strip {
  padding: 22px 0 56px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-item {
  min-height: 96px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: 22px;
  color: var(--muted-2);
  background: rgba(255, 213, 140, 0.055);
  border: 1px solid var(--border);
  font-weight: 900;
  letter-spacing: 0.3px;
}

/* =========================================================
   SECTIONS
========================================================= */

.section {
  padding: 82px 0;
}

.section h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -1.6px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  margin-bottom: 36px;
}

.section-copy {
  max-width: 720px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.text-card {
  padding: 34px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 213, 140, 0.09), transparent),
    linear-gradient(180deg, var(--bg-card), var(--bg-card-2));
  border: 1px solid var(--border);
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.28);
}

.text-card ul {
  display: grid;
  gap: 14px;
  padding-left: 20px;
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.stat {
  min-height: 178px;
  padding: 26px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 181, 69, 0.13), transparent 36%),
    linear-gradient(180deg, var(--bg-card), var(--bg-card-2));
  border: 1px solid var(--border);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 42px;
}

.stat span {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.5;
}

.product-grid,
.promo-grid,
.news-grid,
.steps-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-card,
.promo-card,
.news-card,
.step-card,
.faq-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 30px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 213, 140, 0.08), transparent),
    linear-gradient(180deg, var(--bg-card), var(--bg-card-2));
  border: 1px solid var(--border);
  box-shadow: 0 22px 72px rgba(0, 0, 0, 0.28);
}

.product-card,
.promo-card,
.news-card,
.step-card {
  transition: 0.25s ease;
}

.product-card::before,
.promo-card::before,
.news-card::before,
.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 181, 69, 0.09), transparent 42%);
  opacity: 0;
  transition: 0.25s ease;
}

.product-card:hover::before,
.promo-card:hover::before,
.news-card:hover::before,
.step-card:hover::before {
  opacity: 1;
}

.product-card:hover,
.promo-card:hover,
.news-card:hover,
.step-card:hover {
  transform: translateY(-5px);
}

.card-icon {
  position: relative;
  z-index: 2;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 22px;
  background: rgba(255, 213, 140, 0.1);
  font-size: 30px;
}

.product-card h3,
.promo-card h3,
.news-card h3,
.step-card h3,
.faq-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 14px;
  color: var(--text);
  font-size: 25px;
}

.product-card p,
.promo-card p,
.news-card p,
.step-card p,
.faq-card p {
  position: relative;
  z-index: 2;
}

.dark-section {
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 95, 109, 0.14), transparent 28%),
    rgba(255, 213, 140, 0.03);
}

.promo-card-featured {
  grid-column: span 2;
  min-height: 360px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 213, 110, 0.22), transparent 28%),
    radial-gradient(circle at 15% 75%, rgba(255, 181, 69, 0.2), transparent 34%),
    linear-gradient(180deg, #3a2415, #160f0a);
}

.tag-list {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.tag-list span {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--muted-2);
  background: rgba(255, 213, 140, 0.09);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 800;
}

/* =========================================================
   TIMELINE
========================================================= */

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 22px;
  padding: 26px;
  border-radius: 26px;
  background: rgba(255, 213, 140, 0.06);
  border: 1px solid var(--border);
}

.timeline-year {
  color: var(--accent);
  font-size: 26px;
  font-weight: 900;
}

.timeline-item h3 {
  margin: 0 0 8px;
  font-size: 24px;
}

.timeline-item p {
  margin: 0;
}

/* =========================================================
   CTA
========================================================= */

.cta {
  padding: 54px 0 104px;
}

.cta-box {
  position: relative;
  overflow: hidden;
  padding: 58px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 213, 110, 0.22), transparent 27%),
    linear-gradient(135deg, rgba(255, 181, 69, 0.18), rgba(255, 95, 109, 0.08)),
    linear-gradient(180deg, var(--bg-card), var(--bg-card-2));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: center;
}

.cta-box::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 181, 69, 0.16);
  filter: blur(4px);
}

.cta-box h2,
.cta-box p,
.cta-box a {
  position: relative;
  z-index: 2;
}

.cta-box h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -1.5px;
}

.cta-box p {
  max-width: 720px;
  margin: 0 auto 30px;
  font-size: 18px;
}

/* =========================================================
   INNER PAGE HERO
========================================================= */

.page-hero {
  padding: 84px 0 42px;
}

.breadcrumbs {
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 800;
}

.breadcrumbs a {
  color: var(--accent);
}

.page-hero h1 {
  margin: 0 0 20px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.95;
  letter-spacing: -2.4px;
}

.page-hero p {
  max-width: 840px;
  font-size: 19px;
}

.inner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.content-panel {
  padding: 32px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--bg-card), var(--bg-card-2));
  border: 1px solid var(--border);
  box-shadow: 0 22px 72px rgba(0, 0, 0, 0.28);
}

.content-panel h2,
.content-panel h3 {
  margin-top: 0;
}

.content-panel li {
  margin-bottom: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.info-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.info-item {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 213, 140, 0.06);
  border: 1px solid var(--border);
  color: var(--muted);
}

/* =========================================================
   EXTRA CONTENT PAGES / TABLES
========================================================= */

.epp-page-content {
  padding: 84px 0;
}

.epp-page-content h2 {
  margin: 0 0 18px;
  color: var(--text);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -1px;
}

.epp-page-content h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 24px;
}

.epp-page-content p {
  margin-top: 0;
}

.epp-intro-box {
  padding: 34px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(255, 181, 69, 0.14), transparent 34%),
    linear-gradient(180deg, var(--bg-card), var(--bg-card-2));
  border: 1px solid var(--border);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.28);
  margin-bottom: 28px;
}

.epp-table-wrap {
  overflow-x: auto;
  margin: 28px 0;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(255, 213, 140, 0.04);
}

.epp-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.epp-table th,
.epp-table td {
  padding: 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  line-height: 1.55;
  vertical-align: top;
}

.epp-table th {
  color: var(--text);
  background: rgba(255, 213, 140, 0.075);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.epp-table tr:last-child td {
  border-bottom: 0;
}

.epp-checklist {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.epp-checklist li {
  position: relative;
  padding: 18px 18px 18px 52px;
  border-radius: 18px;
  color: var(--muted);
  background: rgba(255, 213, 140, 0.06);
  border: 1px solid var(--border);
  line-height: 1.65;
}

.epp-checklist li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #170d07;
  font-weight: 900;
  font-size: 14px;
}

.epp-note {
  padding: 24px;
  margin: 28px 0;
  border-left: 4px solid var(--accent);
  border-radius: 20px;
  background: rgba(255, 181, 69, 0.08);
  color: var(--muted-2);
  line-height: 1.7;
}

.epp-two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.epp-card {
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 213, 140, 0.08), transparent),
    linear-gradient(180deg, var(--bg-card), var(--bg-card-2));
  border: 1px solid var(--border);
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.28);
}

.epp-card-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(255, 213, 140, 0.1);
  font-size: 28px;
}

.epp-rating {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 181, 69, 0.12);
  color: var(--accent);
  font-weight: 900;
  font-size: 13px;
}

/* =========================================================
   EXTRA GRADIENT HELPERS
========================================================= */

.bg-1 {
  background:
    radial-gradient(circle at 30% 25%, #fff1ba, transparent 18%),
    linear-gradient(135deg, #ffb545, #ff5f6d);
}

.bg-2 {
  background:
    radial-gradient(circle at 70% 30%, #fff8df, transparent 16%),
    linear-gradient(135deg, #ff7a45, #c45cff);
}

.bg-3 {
  background:
    radial-gradient(circle at 45% 35%, #ffe9a8, transparent 18%),
    linear-gradient(135deg, #d8832f, #7b2d18);
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 38px 0;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  max-width: 620px;
}

.footer-brand strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 18px;
}

.age {
  color: var(--accent);
  font-weight: 900;
}

/* =========================================================
   KEYFRAMES
========================================================= */

@keyframes floatOrb {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-24px, 28px, 0) scale(1.06);
  }
}

@keyframes cardFloat {
  0%, 100% {
    transform: translateY(0) rotateX(0deg) rotateY(0deg);
  }

  50% {
    transform: translateY(-12px) rotateX(1.2deg) rotateY(-1.2deg);
  }
}

@keyframes subtleLift {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

@keyframes progressPulse {
  0%, 100% {
    opacity: 0.76;
    transform: scaleX(0.93);
    transform-origin: left;
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
    transform-origin: left;
  }
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1020px) {
  .header-cta {
    display: none;
  }

  .hero-grid,
  .about-grid,
  .trust-grid,
  .product-grid,
  .promo-grid,
  .news-grid,
  .steps-grid,
  .faq-grid,
  .inner-grid,
  .epp-two-col {
    grid-template-columns: 1fr;
  }

  .promo-card-featured {
    grid-column: auto;
  }

  .hero-visual {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .feature-card-large {
    min-height: 390px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .epp-intro-box,
  .epp-card {
    padding: 24px;
  }
}

@media (max-width: 760px) {
  .header-inner {
    min-height: 74px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .main-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 86px;
    display: none;
    padding: 18px;
    border-radius: 24px;
    background: rgba(23, 18, 13, 0.96);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
    gap: 8px;
  }

  .main-nav a {
    width: 100%;
  }

  .hero {
    padding: 64px 0 46px;
  }

  .hero h1 {
    letter-spacing: -1.8px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 36px 22px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1200px);
  }

  .hero h1,
  .page-hero h1 {
    letter-spacing: -1.5px;
  }

  .section {
    padding: 64px 0;
  }

  .epp-page-content {
    padding: 64px 0;
  }

  .product-card,
  .promo-card,
  .news-card,
  .step-card,
  .faq-card,
  .content-panel {
    padding: 24px;
    border-radius: 24px;
  }

  .epp-table th,
  .epp-table td {
    padding: 14px;
  }
}