:root {
  --clr-dark: #0d1117;
  --clr-dark2: #141b24;
  --clr-green: #22c55e;
  --clr-green-light: #bbf7d0;
  --clr-gold: #f4c542;
  --clr-blue: #3b82f6;
  --clr-text: #1e293b;
  --clr-muted: #64748b;
  --clr-bg: #f8fafc;
  --clr-white: #ffffff;
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --section-py: 100px;
  --radius: 20px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  --shadow-deep: 0 32px 80px rgba(0, 0, 0, 0.16);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--clr-text);
  background: var(--clr-white);
  overflow-x: hidden;
  line-height: 1.6;
}

.py-section {
  padding: var(--section-py) 0;
}

.mb-section {
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-green);
  background: rgba(34, 197, 94, 0.1);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--clr-text);
  margin-bottom: 24px;
}

.section-text {
  color: var(--clr-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.reveal-fade,
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

.reveal-fade {}

.reveal-fade.visible,
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.15s;
}

.delay-2 {
  transition-delay: 0.3s;
}

.delay-3 {
  transition-delay: 0.45s;
}


#mainNav {
  background: transparent;
  padding: 20px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

#mainNav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
}

#mainNav.scrolled .nav-link {
  color: var(--clr-text);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--clr-dark) !important;
  text-decoration: none;
}

.brand-icon {
  width: 38px;
  height: 38px;
  background: var(--clr-green);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  font-family: var(--font-display);
}

.nav-link {
  color: #ffffff;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.nav-link:hover {
  background: rgba(34, 197, 94, 0.1);
  color: var(--clr-green) !important;
}

.btn-primary-accent {
  background: var(--clr-green);
  color: white !important;
  border-radius: 10px;
  padding: 10px 22px !important;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.btn-primary-accent:hover {
  color: #000 !important;
  background-color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.35);
}

.navbar-toggler {
  border: none;
  outline: none !important;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.hero-section {
  background: linear-gradient(135deg, #0d1117 0%, #141b24 50%, #0f2318 100%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #22c55e, transparent 70%);
  top: -150px;
  right: -100px;
}

.shape-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #3b82f6, transparent 70%);
  bottom: 100px;
  left: -80px;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #f4c542, transparent 70%);
  top: 50%;
  right: 40%;
  opacity: 0.2;
}

.hero-content {
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: var(--clr-green);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: normal;
  color: var(--clr-green);
  position: relative;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-hero-primary {
  background: var(--clr-green);
  color: white;
  padding: 14px 30px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  display: inline-flex;
  align-items: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.btn-hero-primary:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(34, 197, 94, 0.4);
}

.btn-hero-ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background 0.25s;
}

.btn-hero-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.stat-suffix {
  font-size: 1.4rem;
  color: var(--clr-green);
  font-weight: 700;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-visual {
  display: flex;
  justify-content: center;
  padding: 80px 0;
}

.dashboard-mockup {
  background: #1a2332;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(34, 197, 94, 0.1);
  overflow: hidden;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #111720;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red {
  background: #ff5f57;
}

.dot.yellow {
  background: #ffbd2e;
}

.dot.green {
  background: #28c940;
}

.mockup-title {
  margin-left: 12px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.mockup-body {
  padding: 20px;
}

.mockup-balance {
  background: linear-gradient(135deg, #1e3a2e, #153026);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 16px;
}

.balance-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}

.balance-amount {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--clr-green);
  margin-bottom: 12px;
}

.balance-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-bottom: 8px;
  overflow: hidden;
}

.balance-fill {
  height: 100%;
  background: var(--clr-green);
  border-radius: 10px;
  transition: width 1.5s ease;
}

.balance-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
}

.mockup-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.cat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
}

.cat-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}

.cat-info {
  flex: 1;
  min-width: 0;
}

.cat-info span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-bottom: 4px;
}

.cat-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.cat-fill {
  height: 100%;
  border-radius: 10px;
}

.cat-amount {
  font-size: 0.78rem;
  font-weight: 600;
  color: white;
  white-space: nowrap;
}

.mockup-goal {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(244, 197, 66, 0.08);
  border: 1px solid rgba(244, 197, 66, 0.2);
  border-radius: 10px;
  padding: 12px;
}

.goal-info {
  flex: 1;
}

.goal-info span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-bottom: 4px;
}

.goal-progress {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.goal-fill {
  height: 100%;
  background: var(--clr-gold);
  border-radius: 10px;
}

.goal-pct {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--clr-gold);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
  animation: scrollAnim 1.8s ease-in-out infinite;
}

@keyframes scrollAnim {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  50.01% {
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

.section-about {
  background: var(--clr-bg);
}

.about-visual {
  position: relative;
  height: 420px;
}

.about-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: var(--shadow);
  font-size: 0.85rem;
}

.about-card i {
  font-size: 1.8rem;
  color: var(--clr-green);
}

.about-card div {
  display: flex;
  flex-direction: column;
}

.about-card strong {
  font-weight: 600;
  color: var(--clr-text);
}

.about-card span {
  color: var(--clr-muted);
  font-size: 0.78rem;
}

.card-1 {
  top: 20px;
  left: 0;
}

.card-2 {
  bottom: 60px;
  right: 0;
}

.about-big-num {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background: linear-gradient(135deg, var(--clr-dark), var(--clr-dark2));
  color: white;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.about-big-num .counter {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--clr-green);
  line-height: 1;
}

.about-big-num em {
  font-style: normal;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.about-big-num p {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 4px 0 0;
  text-align: center;
  line-height: 1.3;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-text);
}

.pillar i {
  color: var(--clr-green);
  font-size: 1.1rem;
}

.section-features {
  background: white;
}

.feature-card {
  background: var(--clr-bg);
  border-radius: var(--radius);
  padding: 32px 28px;
  height: 100%;
  border: 1px solid transparent;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.feature-card:hover {
  border-color: rgba(34, 197, 94, 0.2);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  background: color-mix(in srgb, var(--c) 15%, white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: var(--c);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--clr-text);
}

.feature-card p {
  color: var(--clr-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.section-tips {
  background: var(--clr-dark);
}

.section-tips .section-title {
  color: white;
}

.tips-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.tip-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  cursor: pointer;
}

.tip-card:hover {
  border-color: rgba(34, 197, 94, 0.3);
  transform: translateY(-4px);
}

.tip-large {
  grid-row: 1 / 3;
}

.tip-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1;
}

.tip-icon {
  font-size: 2rem;
  color: var(--clr-green);
  margin-bottom: 16px;
}

.tip-card h3 {
  font-family: var(--font-display);
  color: white;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.tip-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  line-height: 1.75;
}

.tip-bar-wrap {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tip-bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
}

.tip-bar-item span {
  width: 90px;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

.tip-bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.tip-fill {
  height: 100%;
  border-radius: 10px;
}

.tip-bar-item b {
  width: 36px;
  text-align: right;
  color: white;
}

.section-steps {
  background: var(--clr-bg);
}

.steps-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
}

.steps-timeline::before {
  content: '';
  position: absolute;
  left: 31px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--clr-green), rgba(34, 197, 94, 0.1));
}

.step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 24px 0;
}

.step-num {
  width: 62px;
  height: 62px;
  flex-shrink: 0;
  background: var(--clr-dark);
  color: var(--clr-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  border: 3px solid var(--clr-green);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--clr-bg);
}

.step-content {
  padding-top: 12px;
}

.step-content h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--clr-text);
}

.step-content p {
  color: var(--clr-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.section-testimonials {
  background: white;
}

.testimonial-card {
  background: var(--clr-bg);
  border-radius: var(--radius);
  padding: 30px;
  height: 100%;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.testimonial-card.featured {
  background: var(--clr-dark);
  border-color: rgba(34, 197, 94, 0.3);
  transform: translateY(-12px);
}

.testimonial-card.featured blockquote {
  color: rgba(255, 255, 255, 0.7);
}

.testimonial-card.featured .testimonial-stars {
  color: var(--clr-gold);
}

.testimonial-card.featured strong {
  color: white;
}

.testimonial-card.featured span {
  color: rgba(255, 255, 255, 0.4);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
}

blockquote {
  color: var(--clr-muted);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--clr-text);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--clr-muted);
}

.section-cta {
  background: var(--clr-bg);
}

.cta-box {
  background: linear-gradient(135deg, #0d2818 0%, #0f2318 50%, #0d1f3c 100%);
  border-radius: 28px;
  padding: 64px 56px;
  overflow: hidden;
  position: relative;
}

.cta-deco-1 {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.2), transparent 70%);
  border-radius: 50%;
}

.cta-deco-2 {
  position: absolute;
  bottom: -60px;
  left: 40%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent 70%);
  border-radius: 50%;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-subtitle {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
  line-height: 1.6;
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  background: white;
  color: var(--clr-dark);
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
  white-space: nowrap;
}

.btn-cta-white:hover {
  color: var(--clr-dark);
  background-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(255, 255, 255, 0.2);
}

.cta-note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 12px;
}

.site-footer {
  background: var(--clr-dark);
  padding: 72px 0 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.footer-socials a:hover {
  background: var(--clr-green);
  color: white;
  border-color: var(--clr-green);
}

.site-footer h6 {
  color: white;
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer ul a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.site-footer ul a:hover {
  color: var(--clr-green);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
  margin-top: 48px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.25);
  flex-wrap: wrap;
  gap: 8px;
}

.scroll-top-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  background: var(--clr-green);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 9999;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.4);
}

.scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .tips-grid {
    grid-template-columns: 1fr;
  }

  .tip-large {
    grid-row: auto;
  }

  .hero-content {
    padding: 100px 0 40px;
  }

  .hero-visual {
    padding: 40px 0 60px;
  }

  .cta-box {
    padding: 48px 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 70px;
  }

  .hero-stats {
    gap: 20px;
  }

  .about-visual {
    height: 320px;
  }

  .card-1 {
    left: 10px;
  }

  .card-2 {
    right: 10px;
  }

  .about-big-num {
    width: 130px;
    height: 130px;
  }

  .about-big-num .counter {
    font-size: 2.2rem;
  }

  .steps-timeline::before {
    left: 30px;
  }

  .testimonial-card.featured {
    transform: none;
  }

  .cta-box {
    padding: 40px 24px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .btn-hero-primary,
  .btn-hero-ghost {
    justify-content: center;
  }

  .about-pillars {
    grid-template-columns: 1fr;
  }
}