/* =============================================
   UJIAN SIMULASI - Landing Page Styles
   ============================================= */

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--slate-50);
  color: var(--slate-900);
  line-height: 1.6;
}

.font-display {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   Navigation
   ============================================= */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-100);
}

.nav-content {
  max-width: 1024px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--teal-700);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 14px;
}

.logo-text {
  font-weight: 600;
  color: var(--slate-800);
}

/* =============================================
   Buttons
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #0f766e 0%, #0d9488 100%);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -6px rgba(15, 118, 110, 0.4);
}

.btn-secondary {
  background: var(--slate-900);
  color: white;
}

.btn-secondary:hover {
  background: var(--slate-800);
}

.btn-outline {
  background: transparent;
  color: var(--slate-600);
  border: 1px solid var(--slate-200);
}

.btn-outline:hover {
  border-color: var(--slate-300);
}

.btn-white {
  background: white;
  color: var(--slate-900);
}

.btn-white:hover {
  background: var(--slate-100);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 18px;
}

/* =============================================
   Hero Section
   ============================================= */
.hero {
  background: linear-gradient(180deg, var(--teal-50) 0%, var(--slate-50) 100%);
  padding: 128px 24px 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-50);
  color: var(--teal-700);
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  border: 1px solid var(--teal-100);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--teal-500);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 48px;
  }
}

.gradient-text {
  background: linear-gradient(135deg, #0f766e 0%, #115e59 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 18px;
  color: var(--slate-600);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--slate-200);
  flex-wrap: wrap;
}

.hero-stat-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--slate-900);
}

.hero-stat-label {
  font-size: 14px;
  color: var(--slate-500);
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--slate-200);
}

/* =============================================
   Phone Mockup
   ============================================= */
.phone-wrapper {
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .phone-wrapper {
    justify-content: flex-end;
  }
}

.phone-mockup {
  background: linear-gradient(145deg, #1e293b 0%, #334155 100%);
  border-radius: 32px;
  padding: 8px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  width: 300px;
}

.phone-screen {
  background: white;
  border-radius: 24px;
  overflow: hidden;
}

.phone-header-new {
  background: white;
  padding: 20px 16px 12px;
  text-align: center;
}

.phone-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--slate-800);
  margin-bottom: 8px;
}

.phone-title-underline {
  width: 40px;
  height: 3px;
  background: var(--teal-500);
  margin: 0 auto;
  border-radius: 2px;
}

.phone-content {
  padding: 16px;
}

.phone-timer {
  background: #fee2e2;
  color: #dc2626;
  padding: 12px 16px;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}

.phone-question-box {
  background: linear-gradient(to right, #f8fafc, #f1f5f9);
  border-left: 4px solid var(--teal-500);
  padding: 16px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 16px;
}

.phone-question-text {
  font-size: 13px;
  color: var(--slate-700);
  line-height: 1.5;
  font-style: italic;
}

.phone-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.phone-option-radio {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  font-size: 13px;
  color: var(--slate-700);
  cursor: pointer;
  transition: all 0.2s;
}

.phone-option-radio:hover {
  border-color: var(--slate-300);
  background: var(--slate-50);
}

.phone-option-radio.active {
  border-color: var(--teal-500);
  background: var(--teal-50);
}

.radio-circle {
  width: 18px;
  height: 18px;
  border: 2px solid var(--slate-300);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.radio-circle.active {
  border-color: var(--teal-500);
}

.radio-circle.active::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: var(--teal-500);
  border-radius: 50%;
}

.phone-buttons {
  display: flex;
  gap: 12px;
}

.phone-btn-nav {
  flex: 1;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--teal-600);
  color: white;
}

.phone-btn-nav:hover {
  background: var(--teal-700);
}

.phone-btn-nav.primary {
  background: var(--teal-600);
  color: white;
}

.phone-btn-nav.primary:hover {
  background: var(--teal-700);
}

/* =============================================
   Section Headers
   ============================================= */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 40px;
  }
}

.section-desc {
  color: var(--slate-600);
  max-width: 560px;
  margin: 0 auto;
}

/* =============================================
   Features Section
   ============================================= */
.features {
  padding: 80px 24px;
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  background: var(--slate-50);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--slate-100);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.feature-title {
  font-weight: 600;
  color: var(--slate-900);
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 14px;
  color: var(--slate-600);
  line-height: 1.6;
}

/* =============================================
   Stats Section
   ============================================= */
.stats {
  padding: 80px 24px;
  background: var(--slate-900);
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.stats-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .stats-title {
    font-size: 40px;
  }
}

.stats-desc {
  color: var(--slate-400);
  line-height: 1.7;
  margin-bottom: 32px;
}

.stats-rings {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat-ring-container {
  text-align: center;
}

.stat-ring {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
}

.stat-ring-72 {
  background: conic-gradient(var(--teal-700) 72%, var(--slate-700) 0);
}

.stat-ring-96 {
  background: conic-gradient(var(--teal-700) 96%, var(--slate-700) 0);
}

.stat-ring-inner {
  width: 96px;
  height: 96px;
  background: var(--slate-900);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}

.stat-ring-label {
  font-size: 14px;
  color: var(--slate-400);
}

/* =============================================
   Pricing Section
   ============================================= */
.pricing {
  padding: 80px 24px;
  background: white;
}

/* =============================================
   Testimonials Section
   ============================================= */
.testimonials {
  padding: 80px 24px;
  background: var(--slate-50);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--slate-200);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-500) 0%, var(--teal-700) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-weight: 600;
  color: var(--slate-900);
  font-size: 15px;
}

.testimonial-role {
  font-size: 13px;
  color: var(--slate-500);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 896px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1);
}

.pricing-card-default {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
}

.pricing-card-popular {
  background: var(--slate-900);
  color: white;
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.2);
}

.pricing-badge {
  display: inline-block;
  background: var(--teal-500);
  color: white;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 16px;
}

.pricing-soalan {
  font-size: 14px;
  color: var(--slate-500);
}

.pricing-card-popular .pricing-soalan {
  color: var(--slate-400);
}

.pricing-name {
  font-size: 18px;
  font-weight: 600;
  margin-top: 4px;
  margin-bottom: 16px;
}

.pricing-price {
  margin-bottom: 24px;
}

.pricing-currency {
  font-size: 25px;
  color: var(--slate-500);
}

.pricing-card-popular .pricing-currency {
  color: var(--slate-400);
}

.pricing-amount {
  font-size: 40px;
  font-weight: 700;
}

.pricing-features {
  list-style: none;
  margin-bottom: 24px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 12px;
}

.pricing-feature-check {
  color: var(--teal-600);
}

.pricing-card-popular .pricing-feature-check {
  color: var(--teal-400);
}

.pricing-feature-text {
  color: var(--slate-600);
}

.pricing-card-popular .pricing-feature-text {
  color: var(--slate-300);
}

.pricing-btn {
  width: 100%;
}

/* =============================================
   CTA Section
   ============================================= */
.cta {
  padding: 64px 24px;
  background: var(--teal-700);
  text-align: center;
}

.cta-title {
  font-size: 32px;
  font-weight: 600;
  color: white;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 40px;
  }
}

.cta-desc {
  color: var(--teal-100);
  margin-bottom: 32px;
}

.cta .btn-white {
  color: var(--teal-700);
}

.cta .btn-white:hover {
  background: var(--teal-50);
}

/* =============================================
   FAQ Section
   ============================================= */
.faq {
  padding: 80px 24px;
  background: var(--slate-50);
}

.faq-list {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: white;
  border-radius: 12px;
  border: 1px solid var(--slate-200);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--slate-900);
  text-align: left;
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--slate-50);
}

.faq-icon {
  color: var(--slate-400);
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 16px;
  color: var(--slate-600);
}

.faq-item.open .faq-answer {
  display: block;
}

/* =============================================
   Footer
   ============================================= */
footer {
  padding: 40px 24px;
  background: white;
  border-top: 1px solid var(--slate-200);
}

.footer-content {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copy {
  font-size: 14px;
  color: var(--slate-500);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-link {
  font-size: 14px;
  color: var(--slate-600);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--slate-900);
}

/* =============================================
   Animations
   ============================================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.6s ease-out forwards;
}
/* =============================================
   REDIRECT PAGE - Additional Styles
   ============================================= */

/* Hero Section */
.redirect-hero {
  background: linear-gradient(180deg, var(--teal-50) 0%, var(--slate-50) 100%);
  padding: 140px 24px 80px;
  text-align: center;
}

.redirect-hero-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--teal-500) 0%, var(--teal-700) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 40px;
  color: white;
  box-shadow: 0 10px 30px -10px rgba(15, 118, 110, 0.4);
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.redirect-title {
  font-size: 36px;
  font-weight: 600;
  color: var(--slate-900);
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .redirect-title {
    font-size: 44px;
  }
}

.redirect-subtitle {
  font-size: 18px;
  color: var(--slate-500);
}

/* Explanation Section */
.explanation {
  padding: 80px 24px;
  background: white;
}

.explanation-content {
  max-width: 900px;
  margin: 0 auto;
}

.explanation-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--slate-900);
  text-align: center;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .explanation-title {
    font-size: 32px;
  }
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--slate-50);
  border-radius: 16px;
  border: 1px solid var(--slate-100);
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--teal-500) 0%, var(--teal-700) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 20px;
  font-weight: 600;
  color: white;
}

.step-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--slate-900);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 14px;
  color: var(--slate-600);
  line-height: 1.7;
}

/* Profile Info Box */
.profile-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, var(--teal-50) 0%, var(--slate-50) 100%);
  border: 1px solid var(--teal-100);
  border-radius: 16px;
  padding: 32px;
}

@media (min-width: 768px) {
  .profile-info {
    flex-direction: row;
    text-align: left;
  }
}

.profile-info-icon {
  font-size: 48px;
  flex-shrink: 0;
}

.profile-info-content {
  flex: 1;
}

.profile-info-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--slate-900);
  margin-bottom: 8px;
}

.profile-info-text {
  font-size: 15px;
  color: var(--slate-600);
  line-height: 1.7;
}

/* Sample Report Section */
.sample-report {
  padding: 80px 24px;
  background: var(--slate-900);
  color: white;
}

.sample-report-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .sample-report-content {
    grid-template-columns: 1fr 1fr;
  }
}

.sample-report-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .sample-report-title {
    font-size: 32px;
  }
}

.sample-report-desc {
  font-size: 16px;
  color: var(--slate-400);
  line-height: 1.7;
  margin-bottom: 24px;
}

.sample-report-text .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Report Preview Card */
.report-preview-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
}

.report-preview-header {
  background: linear-gradient(135deg, var(--teal-600) 0%, var(--teal-700) 100%);
  color: white;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 14px;
}

.report-preview-body {
  padding: 24px 20px;
}

.report-bar {
  margin-bottom: 16px;
}

.report-bar:last-child {
  margin-bottom: 0;
}

.report-bar span {
  display: block;
  font-size: 13px;
  color: var(--slate-600);
  margin-bottom: 6px;
}

.bar {
  height: 8px;
  background: var(--slate-100);
  border-radius: 4px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal-500) 0%, var(--teal-600) 100%);
  border-radius: 4px;
  transition: width 1s ease-out;
}

/* Pricing adjustments for redirect page */
.sample-report + .pricing {
  background: var(--slate-50);
}
/* Paragraph */
.steps-grid .step-card p{
 font-size:17px;
}

/* Paragraph */
.profile-info p{
 font-size:17px;
}

/* Paragraph */
.sample-report .sample-report-text p{
 font-size:17px;
}

/* Heading */
.sample-report .sample-report-text h2{
 font-weight:500;
 color:#ffffff;
}

/* Heading */
.explanation h2{
 font-weight:500;
}

/* Heading */
.redirect-hero h1{
 font-weight:500;
}

/* Paragraph */
.redirect-hero p{
 font-size:17px;
}

/* Heading */
#pricing .section-header h2{
 font-weight:500;
}

/* Paragraph */
#pricing .section-header p{
 font-size:17px;
}

/* Button */
.sample-report .sample-report-text a{
 font-weight:400;
 font-size:16px;
}

/* Pricing soalan */
.pricing-grid .pricing-card .pricing-soalan{
 font-size:17px;
}

/* Pricing badge */
.pricing-grid .pricing-card-popular .pricing-badge{
 font-size:13px;
}

/* Pricing feature text */
.pricing-card-popular .pricing-feature .pricing-feature-text{
 font-size:17px;
}

/* Pricing feature text */
.pricing-grid .pricing-card .pricing-feature-text{
 font-size:17px;
}

/* Button */
.pricing-grid .pricing-card .btn-secondary{
 font-size:16px;
}

/* Button */
.pricing-grid .pricing-card-popular a{
 font-size:16px;
}

/* Span Tag */
.report-preview-card .report-preview-header span{
 font-weight:500;
}

/* Pricing */
#pricing{
 background-color:#ffffff;
}