@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --bg-dark: #050505;
  --bg-darker: #020202;
  --bg-card: rgba(255, 255, 255, 0.03);
  --accent-cyan: #d4af37; /* GOLD instead of cyan */
  --accent-purple: #8a2be2;
  --accent-gold: #d4af37;
  --text-main: #ffffff;
  --text-muted: #a0a0a0;
  --glass-border: rgba(255, 255, 255, 0.08);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

canvas#stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* NAVIGATION */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(15px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--glass-border);
}

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

.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-socials {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: var(--text-muted);
  transition: var(--transition);
}

.social-link:hover {
  color: var(--accent-cyan);
  transform: translateY(-2px);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.lang-btn {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  transition: var(--transition);
}

.lang-btn.active {
  color: var(--accent-cyan);
}

.lang-sep {
  opacity: 0.3;
}

.btn-nav {
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  background: var(--glass-border);
  color: white;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}

.btn-nav:hover {
  background: white;
  color: black;
}

/* HERO */
.hero {
  padding: 12rem 0 8rem;
  position: relative;
  text-align: center;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.15;
}

.glow-1 {
  background: var(--accent-purple);
  top: -100px;
  left: -200px;
}

.glow-2 {
  background: var(--accent-cyan);
  bottom: -100px;
  right: -200px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 8vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-cyan);
}

.hero-sub {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 3.5rem;
  font-weight: 400;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.btn-primary {
  padding: 1.2rem 2.5rem;
  background: var(--accent-cyan);
  color: black;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 242, 255, 0.3);
}

.btn-ghost {
  padding: 1.2rem 2.5rem;
  background: transparent;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}

.btn-ghost:hover {
  background: var(--glass-border);
}

.hero-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.sep {
  opacity: 0.3;
}

/* SAMPLE BLOCK */
.report-sample {
  margin-top: 5rem;
  background: rgba(212, 175, 55, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 32px;
  padding: 50px;
  position: relative;
  overflow: hidden;
}
.report-sample::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at 0% 0%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.sample-header {
  margin-bottom: 30px;
}
.sample-tag {
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 700;
}
.sample-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #fff;
  line-height: 1.3;
}
.sample-text blockquote {
  border-left: 2px solid var(--accent-gold);
  padding-left: 25px;
  margin: 30px 0;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #fff;
}
.sample-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 25px;
}

/* SECTIONS */
.section {
  padding: 8rem 0;
}

.section-dark {
  background: var(--bg-darker);
}

.section-tag {
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 6vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 3rem;
}

/* PROCESS */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.step-item {
  position: relative;
}

.step-num {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  opacity: 0.05;
  line-height: 1;
  margin-bottom: -1.5rem;
}

.step-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.step-desc {
  color: var(--text-muted);
}

/* SAMPLE BLOCK */
.report-sample {
  margin-top: 6rem;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  overflow: hidden;
}

.sample-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--glass-border);
}

.sample-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.sample-content {
  padding: 2.5rem;
}

.sample-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.sample-note {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

/* CARDS GRID */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
}

.card {
  padding: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  transition: var(--transition);
}

.card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
}

.card-icon {
  font-size: 1.5rem;
  color: var(--accent-cyan);
  margin-bottom: 1.5rem;
}

/* SYSTEMS GRID */
.systems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
}

.system-item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--bg-card);
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  position: relative;
}

.sys-num {
  font-weight: 800;
  color: var(--accent-cyan);
  opacity: 0.5;
}

.sys-name {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.sys-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.sys-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.6rem;
  text-transform: uppercase;
  background: var(--accent-cyan);
  color: black;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 800;
}

.hierarchy-note {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.hierarchy-chain {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hc-item {
  padding: 0.5rem 1rem;
  background: var(--glass-border);
  border-radius: 8px;
  color: white;
}

.hc-item.active {
  background: var(--accent-cyan);
  color: black;
}

/* IR INDEX */
.ir-params {
  display: flex;
  gap: 1rem;
  margin-bottom: 4rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.ir-levels {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ir-level {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 1.5rem 2rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ir-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ir-range {
  font-weight: 700;
  width: 80px;
}

.ir-label {
  font-weight: 600;
  font-size: 1.1rem;
}

.ir-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.ir-bar-wrap {
  height: 4px;
  background: var(--glass-border);
  border-radius: 10px;
  position: relative;
}

.ir-bar {
  height: 100%;
  width: var(--w);
  background: var(--accent-cyan);
  border-radius: 10px;
}

.ir-bar.gold {
  background: var(--accent-gold);
}

/* SECTIONS LIST */
.sections-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.sec-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  border-bottom: 1px solid var(--glass-border);
}

.sec-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--accent-cyan);
  width: 40px;
}

.sec-name {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.sec-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* COMPARE TABLE */
.compare-table {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  overflow: hidden;
}

.compare-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 1.5rem 2rem;
  background: var(--glass-border);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--glass-border);
}

.col-ahd {
  color: var(--accent-cyan);
}

/* INCLUDES CARDS */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 3rem 0 5rem;
}
.include-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 20px;
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
}
.include-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-gold);
  transform: translateY(-5px);
}
.inc-check {
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  flex-shrink: 0;
  font-size: 1.2rem;
}
.inc-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.inc-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.needs-block {
  text-align: center;
  padding: 3rem;
  background: var(--bg-card);
  border-radius: 24px;
}
.needs-items {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 4rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 35px 40px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateX(10px);
}

.faq-q {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
  letter-spacing: -0.01em;
}

.faq-a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ASK FORM */
.ask-block {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 24px;
  text-align: center;
}

.ask-form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.ask-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ask-input, .ask-textarea {
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--glass-border);
  color: white;
  padding: 1rem;
  border-radius: 12px;
  font-family: var(--font-body);
}

.ask-textarea {
  height: 120px;
  resize: none;
}

.ask-btn {
  padding: 1rem;
  background: white;
  color: black;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.ask-btn:hover {
  transform: translateY(-2px);
  background: var(--accent-cyan);
}

.ask-success {
  display: none;
  margin-top: 1rem;
  color: #4ade80;
}

/* REVIEWS GRID */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}
.review-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}
.review-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(212, 175, 55, 0.3);
}
.review-stars {
  color: var(--accent-gold);
  margin-bottom: 20px;
  letter-spacing: 2px;
}
.review-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 30px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.review-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #d4af37, #8a2be2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
}
.review-name {
  font-weight: 600;
  font-size: 1.1rem;
}
.review-meta {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.reviews-cta {
  margin-top: 4rem;
  text-align: center;
}

.btn-reviews-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--accent-cyan);
  padding-bottom: 5px;
}

/* AUTHOR */
.author-block {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 4rem;
  align-items: center;
}

.author-avatar img {
  width: 100%;
  border-radius: 30px;
  filter: grayscale(0.5);
}

.author-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.author-stats {
  display: flex;
  gap: 3rem;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* PRICING SECTION */
.pricing-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 40px;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto 60px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}
.pricing-tag {
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  margin-bottom: 25px;
}
.pricing-main-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5rem);
  color: var(--accent-gold);
  margin-bottom: 25px;
}
.pricing-features {
  color: var(--text-muted);
  margin-bottom: 15px;
  font-size: 1.1rem;
}
.pricing-mini-nav {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.3);
  margin-bottom: 50px;
}
.price-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.price-item {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price-item .curr {
  font-size: 1.6rem;
  color: var(--accent-gold);
}
.price-item .val {
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  font-weight: 700;
  color: #fff;
}
.price-sep {
  font-size: 2rem;
  color: rgba(255,255,255,0.15);
  font-weight: 300;
  flex-shrink: 0;
}
.price-note {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 50px;
}
.btn-pay {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37, #b8860b);
  color: #000;
  padding: 25px 80px;
  border-radius: 60px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.25rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
  margin-bottom: 30px;
}
.btn-pay:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 25px 60px rgba(212, 175, 55, 0.5);
}
.order-footer-note {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-mini {
  text-align: center;
  padding: 60px 20px;
  background: rgba(255,255,255,0.02);
  border-radius: 40px;
  margin-top: 40px;
  border: 1px solid rgba(255,255,255,0.05);
}
.contact-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.contact-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.contact-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--accent-gold);
  transform: translateY(-3px);
  color: var(--accent-gold);
}
.contact-btn svg {
  opacity: 0.7;
}

.order-includes {
  display: flex;
  justify-content: center;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 3rem;
}

.price-single {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.price-other {
  font-size: 1.5rem;
  color: var(--text-muted);
  font-weight: 400;
}

.btn-order {
  display: inline-block;
  margin-top: 3rem;
  padding: 1.5rem 4rem;
  background: white;
  color: black;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  transition: var(--transition);
}

.btn-order:hover {
  background: var(--accent-cyan);
  transform: scale(1.05);
}

.order-trust {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: left;
  border-top: 1px solid var(--glass-border);
  padding-top: 3rem;
}

.trust-item a {
  color: white;
  text-decoration: none;
}

/* FOOTER */
.footer {
  padding: 4rem 0;
  border-top: 1px solid var(--glass-border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-socials {
  display: flex;
  gap: 2rem;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* REVEAL ANIMATION - RESET */
.reveal {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  transition: none !important;
}

/* MOBILE OVERRIDES — HIGHEST PRIORITY AT THE END */
@media (max-width: 768px) {
  .hero-cta { flex-direction: column !important; }
  .author-block { grid-template-columns: 1fr !important; }
  .order-trust { grid-template-columns: 1fr !important; }
  .nav-right { gap: 1rem !important; }
  .btn-nav { display: none !important; }
  .sections-list { grid-template-columns: 1fr !important; }

  /* PRICING — mobile fix */
  .pricing-box {
    padding: 40px 15px !important;
    border-radius: 20px !important;
  }
  .price-row {
    flex-direction: column !important;
    gap: 15px !important;
    align-items: center !important;
    display: flex !important;
  }
  .price-sep {
    display: none !important;
  }
  .price-item {
    justify-content: center !important;
    display: flex !important;
  }
  .price-item .val {
    font-size: 3.2rem !important;
  }
  .price-item .curr {
    font-size: 1.5rem !important;
  }
  .btn-pay {
    padding: 20px 30px !important;
    font-size: 1.1rem !important;
    width: 100% !important;
    max-width: 300px;
    display: block !important;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  
  .pricing-main-title {
    font-size: 2.8rem !important;
  }
  .pricing-features, .pricing-mini-nav {
    font-size: 0.9rem !important;
    padding: 0 10px;
  }
}
