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

:root {
  --gold: #d4af37;
  --gold-light: #f1d592;
  --gold-dim: rgba(212, 175, 55, 0.12);
  --dark: #090a0c;
  --dark2: #0e1013;
  --dark3: #14171c;
  --dark4: #1c1f26;
  --border: rgba(212, 175, 55, 0.2);
  --text: #f3f1eb;
  --text-muted: #c9c6be;
  --text-dim: #9c9993;
  --serif: "Playfair Display", serif;
  --sans: "DM Sans", sans-serif;
  --radius: 12px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* Focus styles for keyboard navigation */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {

  *,
  ::before,
  ::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8%;
  height: 72px;
  background: rgba(9, 10, 12, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 0.5px solid var(--border);
}

.nav-brand {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 0.5rem 1.4rem;
  border-radius: 6px;
  font-weight: 700 !important;
  transition:
    background 0.2s,
    transform 0.1s !important;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1000;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--gold);
  transition: 0.3s;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 8% 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle,
      rgba(212, 175, 55, 0.06) 0%,
      transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-dim);
  border: 0.5px solid var(--border);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

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

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 580px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 0.9rem 2.2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -10px rgba(212, 175, 55, 0.4);
}

.btn-outline {
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.9rem 2.2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition:
    border-color 0.2s,
    color 0.2s,
    transform 0.15s;
  display: inline-block;
  background: transparent;
  cursor: pointer;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* Trust Bar */
.trust-bar {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 3.5rem;
  padding: 0.8rem 1.6rem;
  background: var(--dark3);
  border: 0.5px solid var(--border);
  border-radius: 30px;
  width: fit-content;
}

.trust-item {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-light);
  letter-spacing: 0.08em;
}

.trust-divider {
  color: var(--border);
  font-weight: 300;
}

/* hero right */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-card {
  background: var(--dark3);
  border: 0.5px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6);
}

.hero-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.3rem;
}

.stats-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stat-box {
  background: var(--dark4);
  border: 0.5px solid var(--border);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
}

.stat-box .num {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.stat-box .lbl {
  font-size: 0.68rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
  display: block;
}

/* SECTIONS GENERAL */
section {
  padding: 100px 8%;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  font-weight: 300;
  margin-bottom: 3.5rem;
}

.divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 1.2rem 0 2.5rem;
}

/* PROBLEM SECTION */
.problem-section {
  background: var(--dark2);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 2rem;
}

.problem-card {
  background: var(--dark3);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  transition:
    border-color 0.25s,
    transform 0.25s;
}

.problem-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.problem-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: block;
}

.problem-card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--text);
}

.problem-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
}

.problem-footer {
  margin-top: 3.5rem;
  text-align: center;
  border-left: 2px solid var(--gold);
  padding: 0.5rem 1.5rem;
  display: inline-block;
  background: rgba(212, 175, 55, 0.03);
}

.problem-footer p {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold-light);
}

/* SOLUTION SECTION */
.solution-section {
  background: var(--dark);
}

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

.solution-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 1.5rem;
}

.solution-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 400;
}

.solution-features li strong {
  color: var(--text);
  font-weight: 600;
}

.solution-check {
  color: var(--gold);
  font-weight: bold;
  font-size: 1.1rem;
}

/* ABOUT SECTION */
.about-section {
  background: var(--dark2);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-photo-box {
  background: var(--dark3);
  border: 0.5px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
}

.big-avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--dark4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
  margin: 0 auto 1.5rem;
}

.about-photo-box h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  margin-bottom: 0.3rem;
}

.sebi-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(50, 200, 100, 0.08);
  border: 0.5px solid rgba(50, 200, 100, 0.25);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.72rem;
  color: #5edb8e;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.sebi-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5edb8e;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 1.2rem;
}

.tag {
  background: var(--gold-dim);
  border: 0.5px solid var(--border);
  border-radius: 30px;
  padding: 4px 12px;
  font-size: 0.72rem;
  color: var(--gold-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.about-right p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  font-weight: 300;
  line-height: 1.75;
}

/* ELIGIBILITY SECTION */
.eligibility-section {
  background: var(--dark3);
}

.eligibility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 1.5rem;
}

.eligibility-box {
  padding: 2.8rem 2.2rem;
  border-radius: var(--radius);
  background: var(--dark4);
  border: 0.5px solid var(--border);
}

.eligibility-box.suitable {
  background: linear-gradient(135deg,
      rgba(50, 200, 100, 0.02) 0%,
      var(--dark4) 100%);
  border-color: rgba(50, 200, 100, 0.25);
}

.eligibility-box.not-suitable {
  background: linear-gradient(135deg,
      rgba(220, 60, 60, 0.02) 0%,
      var(--dark4) 100%);
  border-color: rgba(220, 60, 60, 0.25);
}

.eligibility-box h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.eligibility-box.suitable h3 {
  color: #5edb8e;
}

.eligibility-box.not-suitable h3 {
  color: #ff6b6b;
}

.eligibility-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.eligibility-list li {
  display: flex;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
}

.eligibility-list li .icon {
  font-weight: bold;
  flex-shrink: 0;
}

.eligibility-box.suitable li .icon {
  color: #5edb8e;
}

.eligibility-box.not-suitable li .icon {
  color: #ff6b6b;
}

/* HOW IT WORKS SECTION */
.how-it-works-section {
  background: var(--dark);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 2rem;
}

.timeline-step {
  background: var(--dark3);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  transition:
    transform 0.25s,
    border-color 0.25s;
}

.timeline-step:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.step-num {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: block;
}

.timeline-step h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.timeline-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
}

/* RISK MANAGEMENT SECTION */
.risk-section {
  background: var(--dark2);
}

.risk-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.risk-example-box {
  background: var(--dark3);
  border: 1px solid var(--gold);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.risk-example-box h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 0.5px solid var(--border);
  padding-bottom: 8px;
}

.risk-example-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.risk-example-row:last-child {
  margin-bottom: 0;
  font-weight: 700;
  color: var(--text);
  background: rgba(212, 175, 55, 0.05);
  padding: 8px 12px;
  border-radius: 6px;
}

.risk-example-row span.val {
  font-family: var(--serif);
  color: var(--gold-light);
}

.risk-footer-text {
  font-style: italic;
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-top: 1.5rem;
  display: block;
  text-align: center;
}

/* EDUCATION SECTION */
.education-section {
  background: var(--dark3);
}

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

.education-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 1.5rem;
}

.education-item {
  background: var(--dark4);
  border: 0.5px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
  transition: border-color 0.2s;
}

.education-item:hover {
  border-color: var(--gold);
}

/* PRICING SECTION */
.pricing-section {
  background: var(--dark);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 2rem auto 0;
}

.pricing-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  position: relative;
  transition:
    transform 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}

.pricing-card.popular {
  border-color: var(--gold);
  box-shadow: 0 20px 40px -10px rgba(212, 175, 55, 0.12);
  background: linear-gradient(180deg,
      rgba(212, 175, 55, 0.02) 0%,
      var(--dark3) 100%);
}

.pricing-card.popular::after {
  content: "BEST VALUE";
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.08em;
}

.pricing-title {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  display: block;
  font-weight: 600;
}

.pricing-price {
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--gold-light);
  margin-bottom: 2rem;
  display: block;
}

/* FAQ SECTION */
.faq-section {
  background: var(--dark2);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 2rem;
}

.faq-item {
  background: var(--dark3);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-item summary {
  padding: 1.3rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--gold);
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: "−";
  transform: rotate(90deg);
}

.faq-item p {
  padding: 0 1.5rem 1.4rem;
  color: var(--text-muted);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* FINAL CTA & DISCLOSURES */
.cta-section {
  background: var(--dark3);
  padding-bottom: 120px;
}

.cta-box {
  background: var(--dark4);
  border: 1px solid var(--gold);
  border-radius: 28px;
  padding: 5rem 4rem;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.6);
}

.cta-box::before {
  content: "";
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
      rgba(212, 175, 55, 0.1) 0%,
      transparent 70%);
  pointer-events: none;
}

.cta-box h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1.2rem;
  line-height: 1.15;
}

.cta-box p {
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 3rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.btn-disclosure-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 2.5rem auto 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
  border-bottom: 1px dashed var(--border);
  padding-bottom: 2px;
  font-family: var(--sans);
  font-weight: 500;
  transition:
    color 0.2s,
    border-color 0.2s,
    transform 0.2s;
  text-align: center;
}

.btn-disclosure-link:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
  transform: translateY(-1px);
}

/* FOOTER */
footer {
  background: var(--dark);
  border-top: 0.5px solid var(--border);
  padding: 2.5rem 8%;
  text-align: center;
}

footer p {
  color: var(--text-dim);
  font-size: 0.8rem;
}

footer a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}

footer a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

/* SCROLL REVEAL CLASS */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-visual {
    display: flex;
    order: 2;
  }

  .hero-content {
    order: 1;
    text-align: center;
  }

  .hero-sub {
    margin: 0 auto 2.5rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .trust-bar {
    margin: 3rem auto 0;
  }

  .about-grid,
  .solution-grid,
  .eligibility-grid,
  .risk-container,
  .education-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-photo-box {
    max-width: 320px;
    margin: 0 auto;
  }

  .problem-grid,
  .timeline-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .menu-toggle {
    display: flex;
  }

  nav .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--dark2);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 0.5px solid var(--border);
  }

  nav .nav-links.active {
    right: 0;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (max-width: 600px) {
  .cta-box {
    padding: 3rem 1.5rem;
  }

  .pricing-card {
    padding: 2.5rem 1.5rem;
  }
}
