@font-face {
  font-family: "Reddit Mono";
  src: url("fonts/reddit-mono-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Reddit Mono";
  src: url("fonts/reddit-mono-latin-500-normal.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Reddit Mono";
  src: url("fonts/reddit-mono-latin-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Reddit Mono";
  src: url("fonts/reddit-mono-latin-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-primary: #45A738;
  --color-secondary: #FFBB00;
  --color-tertiary: #1C1C1C;
  --color-text: #1C1C1C;
  --color-white: #FFFFFF;
  --color-border: rgba(28, 28, 28, 0.12);
  --font-family-primary: "Reddit Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --font-size-base: 16px;
  --line-height-base: 1.6;
  --radius: 10px;
  --transition: all 0.2s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text);
  background: #ffffff;
  padding: 0;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background-color: #ffffff;
  max-width: 1512px;
  margin: 0 auto;
  position: relative;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 50px;
}

.logo img {
  height: 45px;
  width: auto;
  display: block;
}

.navbar-logo {
  margin: 0;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #1C1C1C;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.2s ease;
  font-family: var(--font-family-primary);
}

.nav-links a:hover {
  color: #45A738;
}

.btn-cta {
  background-color: #45A738;
  color: #FFFFFF;
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  transition: all 0.2s ease;
  font-family: var(--font-family-primary);
}

.btn-cta:hover {
  background-color: #2f7e2a;
  transform: translateY(-1px);
}

.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.mobile-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 999px;
}

.mobile-nav-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 1512px;
  margin: 0 auto;
  padding: 0 20px 16px;
}

.mobile-nav-menu a {
  color: var(--color-text);
  font-weight: 600;
  padding: 8px 0;
}

.mobile-nav-menu .btn-primary {
  display: inline-flex;
  justify-content: center;
  margin-top: 4px;
}

.mobile-nav-menu.is-open {
  display: flex;
}

.hero-section {
  padding: 80px 0 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  background: #ffffff;
  max-width: 1512px;
  margin: 0 auto;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 56px;
  line-height: 1.1;
  font-weight: 700;
  color: #1C1C1C;
  max-width: 760px;
}

.hero-title .highlight {
  color: #45A738;
  display: inline-block;
}

.hero-title .main-text {
  display: inline-block;
}

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

.pricing-section {
  padding: 40px 0 80px;
  max-width: 1512px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(28, 28, 28, 0.06);
}

.card-title + .card-price {
  margin-top: -20px;
}

.card-title {
  /* font-size: clamp(1.25rem, 1.8vw, 1.375rem); */
  font-weight: 600;
  color: var(--color-text);
}

.card-price {
  font-size: clamp(2.125rem, 3.2vw, 3rem);
  font-weight: 700;
  color: var(--color-primary);
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.card-actions .btn-primary,
.card-actions .btn-secondary {
  flex: 1;
  min-width: 140px;
}

.features-heading {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(28, 28, 28, 0.7);
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-text);
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

.check-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
  font-family: var(--font-family-primary);
}

.btn-primary {
  background-color: #45A738;
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: #ffffff;
  color: #2f7e2a;
  border: 1px solid #2f7e2a;
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: #1C1C1C;
  color: #FFFFFF;
}

.btn-secondary:hover {
  background-color: #ffffff;
  color: #1c1c1c;
  border: 1px solid #1c1c1c;
  transform: translateY(-1px);
}

.page-shell {
  min-height: 100vh;
  padding: 1.2rem 0 3rem;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #2f7e2a;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3, h4, h5 {
  margin: 0 0 0.75rem;
  color: var(--color-text);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.8rem, 4.2vw, 4.2rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2.125rem, 3.2vw, 3rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.75rem, 2.6vw, 2.25rem);
  font-weight: 700;
}

h4 {
  font-size: clamp(1.5rem, 2.2vw, 1.75rem);
  font-weight: 600;
}

h5 {
  font-size: clamp(1.25rem, 1.8vw, 1.375rem);
  font-weight: 600;
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  padding: 0.5rem 0 1.25rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(28, 28, 28, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(28, 28, 28, 0.05);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  font-weight: 700;
  color: var(--color-text);
}

.brand__logo {
  width: 40px;
  height: 40px;
}

.brand__text {
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.32rem;
  border: 1px solid rgba(69, 167, 56, 0.16);
  border-radius: 999px;
  background: rgba(69, 167, 56, 0.06);
}

.nav__links a {
  color: var(--color-text);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
}

.nav__links a:hover {
  background: rgba(255, 255, 255, 0.8);
}

.nav__cta {
  padding: 0.78rem 1rem;
  font-size: 0.95rem;
  white-space: nowrap;
}

.hero {
  padding: 1rem 0 2rem;
}

.hero__content {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2rem;
  align-items: center;
  padding: 3rem;
  border-radius: 38px;
  background: linear-gradient(125deg, rgba(255,255,255,0.98), rgba(232, 247, 227, 0.95));
  border: 1px solid var(--color-border);
  box-shadow: 0 24px 70px rgba(28, 28, 28, 0.08);
  overflow: hidden;
  position: relative;
}

.hero__content::after {
  content: "";
  position: absolute;
  inset: auto -70px -70px auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(69, 167, 56, 0.22), transparent 68%);
  pointer-events: none;
}

.hero__eyebrow {
  display: inline-block;
  margin-bottom: 0.95rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 187, 0, 0.2);
  color: var(--color-text);
  font-size: 0.85rem;
  font-weight: 600;
}

.hero__copy h1 {
  max-width: 640px;
  margin-bottom: 1rem;
}

.hero__copy p {
  max-width: 590px;
  font-size: 1.02rem;
  color: rgba(28, 28, 28, 0.82);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 1.4rem 0 0;
  list-style: none;
}

.hero__highlights li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  background: rgba(69, 167, 56, 0.1);
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 600;
}

.hero__highlights li img {
  width: 18px;
  height: 18px;
}

.hero__visual {
  display: grid;
}

.hero-panel {
  padding: 1.4rem;
  border-radius: 28px;
  background: linear-gradient(135deg, #45A738 0%, #2f7e2a 100%);
  color: var(--color-white);
  box-shadow: 0 16px 45px rgba(69, 167, 56, 0.2);
}

.hero-panel__top h3 {
  color: var(--color-white);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.hero-panel__tag {
  display: inline-flex;
  margin-bottom: 0.7rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-panel__body {
  display: grid;
  gap: 1rem;
}

.hero-panel__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.hero-panel__stats > div {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
}

.hero-panel__stats strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}

.hero-panel__stats span {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-panel__list {
  display: grid;
  gap: 0.7rem;
}

.hero-panel__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
}

.hero-panel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-secondary);
  flex-shrink: 0;
}

.hero-panel__item p {
  margin: 0;
  font-size: 0.92rem;
}

.section {
  padding: 2rem 0 4rem;
}

.about__content {
  display: grid;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  box-shadow: 0 12px 35px rgba(28, 28, 28, 0.05);
}

.about__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-card {
  padding: 1.25rem;
  border-radius: 20px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
}

.about-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.services__content {
  display: grid;
  gap: 1.25rem;
  padding: 2rem;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  box-shadow: 0 12px 35px rgba(28, 28, 28, 0.05);
}

.services__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  padding: 1.25rem;
  border-radius: 20px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.contact__content {
  padding: 0 0 2rem;
}

.contact__card {
  padding: 2rem;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(69, 167, 56, 0.14), rgba(255, 187, 0, 0.2));
  border: 1px solid var(--color-border);
  box-shadow: 0 12px 35px rgba(28, 28, 28, 0.05);
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 15px;
  border-radius: var(--radius);
  border: 0;
  font-family: var(--font-family-primary);
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(28, 28, 28, 0.12);
}

.btn:active {
  transform: translateY(0);
}

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

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

.footer {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 40px;
  padding: 24px 0;
  background: var(--color-primary);
  color: var(--color-text);
}

.footer .container {
  max-width: 1512px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer p {
  margin: 0;
  font-weight: 600;
  color: var(--color-text);
  text-align: center;
}

@media (max-width: 900px) {
  .hero__content {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: flex;
  }

  .desktop-nav {
    display: none;
  }

  .navbar {
    padding: 15px 20px;
    gap: 15px;
  }

  .navbar-logo {
    margin: 0 auto;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem;
    border-radius: 24px;
  }

  .nav__links {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding-top: 1rem;
  }

  .hero__content {
    padding: 1.5rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.125rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  h4 {
    font-size: 1.5rem;
  }

  h5 {
    font-size: 1.25rem;
  }

  .btn {
    width: 100%;
    font-size: 1.125rem;
    padding: 0.95rem 1rem;
  }

  .about__cards,
  .services__cards,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-section {
    padding: 24px 20px 40px;
  }

  .pricing-card {
    padding: 24px;
  }

  .card-actions {
    flex-direction: column;
  }

  .hero-section {
    padding: 40px 20px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-buttons {
    width: 100%;
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary,
  .nav-links a,
  .mobile-nav-menu a,
  .hero-title,
  .card-title,
  .card-price,
  .features-heading {
    font-weight: 700;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}

/* .max-width-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
} */


/* Features list animation */
/* .features-list li {
  opacity: 0;
  transform: translateY(10px);
  animation: featureReveal 0.5s ease forwards;
}

.features-list li:nth-child(1) {
  animation-delay: 0.2s;
}

.features-list li:nth-child(2) {
  animation-delay: 0.4s;
}

.features-list li:nth-child(3) {
  animation-delay: 0.6s;
}

.features-list li:nth-child(4) {
  animation-delay: 0.8s;
}

.features-list li:nth-child(5) {
  animation-delay: 1s;
}

.features-list li:nth-child(6) {
  animation-delay: 1.2s;
}

@keyframes featureReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
} */

/* animation delay */

.features-list li {
  opacity: 0;
  transform: translateY(16px);
}

.pricing-card.is-visible .features-list li {
  animation: featureReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.pricing-card.is-visible .features-list li:nth-child(1) {
  animation-delay: 0.15s;
}

.pricing-card.is-visible .features-list li:nth-child(2) {
  animation-delay: 0.3s;
}

.pricing-card.is-visible .features-list li:nth-child(3) {
  animation-delay: 0.45s;
}

.pricing-card.is-visible .features-list li:nth-child(4) {
  animation-delay: 0.6s;
}

.pricing-card.is-visible .features-list li:nth-child(5) {
  animation-delay: 0.75s;
}

@keyframes featureReveal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* pricing card */

.pricing-card {
  opacity: 0;
  transform: translateY(-50px);
}

.pricing-card.is-visible {
  animation: cardReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.pricing-card:nth-child(1).is-visible {
  animation-delay: 0s;
}

.pricing-card:nth-child(2).is-visible {
  animation-delay: 0.15s;
}

.pricing-card:nth-child(3).is-visible {
  animation-delay: 0.3s;
}

.pricing-card:nth-child(4).is-visible {
  animation-delay: 0.45s;
}

.pricing-card:nth-child(5).is-visible {
  animation-delay: 0.6s;
}

@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}