* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #ffffff;
  color: #000;
}

/* Circle container */
.menu-toggle {
  position: fixed;
  top: 20px;
  left: 20px;

  width: 50px;
  height: 50px;

  background: #ffffff;
  border: 1px solid #c8c8c8;
  border-radius: 50%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;

  cursor: pointer;
  z-index: 1000;
}

/* Hamburger lines */
.menu-toggle span {
  width: 18px;
  height: 2px;
  background: #000000;
  display: block;
}

/* Smooth animation */
.menu-toggle span {
  width: 18px;
  height: 2px;
  background: #000000;
  display: block;
  transition: all 0.3s ease;
}

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

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

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
/* Nav Bar opening animation */
.menu-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;

  background: #000000; /* light premium green */

  transform: translateY(-100%);
  transition: transform 0.5s ease;

  display: flex;
  justify-content: center;
  align-items: center;

  z-index: 999;
}

.menu-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;

  display: flex;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.menu-panel li {
  margin: 0;
}

.menu-panel a {
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 500;

  font-size: clamp(16px, 1.4vw, 20px);
  color: #ffffff; /* darker green for contrast */

  transition: opacity 0.3s ease;
}

.menu-panel a:hover {
  opacity: 0.6;
}

/* When open */
.menu-panel.active {
  transform: translateY(0);
}

/* Responsive Nav bar code */

.menu-toggle {
  width: 50px;
  height: 50px;
}

@media (max-width: 768px) {
  .menu-toggle {
    width: 42px;
    height: 42px;
    top: 15px;
    left: 15px;
  }

  .menu-toggle span {
    width: 16px;
  }
}

@media (max-width: 480px) {
  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .menu-toggle span {
    width: 14px;
    height: 2px;
  }
}

@media (max-width: 768px) {
  .menu-panel ul {
    flex-direction: column;
    gap: 28px;
  }
}

/* Default (Desktop) */
.menu-panel ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

/* Tablet */
@media (max-width: 992px) {
  .menu-panel ul {
    gap: 40px;
  }

  .menu-panel a {
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .menu-panel {
    height: 35vh; /* Slightly more space */
  }

  .menu-panel ul {
    flex-direction: column;
    gap: 20px;
  }

  .menu-panel a {
    font-size: 18px;
  }
}

/* Search Toggle */

.search-toggle {
  position: fixed;
  top: 20px;
  right: 20px;

  width: 50px;
  height: 50px;

  background: #ffffff;
  border: 1px solid #c8c8c8;
  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;

  cursor: pointer;
  z-index: 1000;
}
.search-toggle svg {
  width: 30px;
  height: 30px;
}

.search-toggle {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.search-toggle.hide-search {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

.menu-toggle,
.search-toggle {
  position: fixed;
  top: 32px;      /* more breathing space */
  z-index: 1000;
}

.menu-toggle {
  left: 100px;
}

.search-toggle {
  right: 100px;
}

/* Responsive scaling */
@media (max-width: 768px) {
  .search-toggle {
    width: 50px;
    height: 50px;
  }

  .search-toggle svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .search-toggle {
    width: 44px;
    height: 44px;
  }

  .search-toggle svg {
    width: 16px;
    height: 16px;
  }
}

/* padding to minimal design for toggle and pages */

@media (max-width: 768px) {
  .menu-toggle {
    left: 20px;
  }

  .search-toggle {
    right: 20px;
  }

  .menu-toggle,
  .search-toggle {
    top: 20px;
  }
}

@media (max-width: 480px) {
  .menu-toggle {
    left: 16px;
  }

  .search-toggle {
    right: 16px;
  }

  .menu-toggle,
  .search-toggle {
    top: 16px;
  }
}

.hamburger {
  width: 24px;
  height: 2px;
  background: #000;
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: #000;
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

.nav-pills {
  display: flex;
  gap: 40px;
}

.pill {
  padding: 14px 36px;
  border-radius: 40px;
  border: 1px solid;
  text-decoration: none;
  color: #000;
}

.green { border-color: #1B7F5C; }
.purple { border-color: #B058E6; }
.blue { border-color: #2D6CDF; }
.red { border-color: #E04B4B; }

/* ---------------- HERO TAG ---------------- */

.pricing-hero {
  padding: 40px clamp(20px, 6vw, 120px);
  margin-bottom: -60px;   /* controls gap */
}

.category-tag {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 40px;
  border: 1px solid #000;
  font-size: 20px;
}

/* ---------------- PRICING GRID ---------------- */

.pricing-section {
  padding: 10px clamp(20px, 6vw, 120px) 80px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

/* Card */
.pricing-card {
  background: #ffffff;
  border: 2px solid #000;
  border-radius: 100px;
  padding: 60px 40px;
  text-align: center;
  transition: 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

/* Content */
.star {
  font-size: 28px;
  margin-bottom: 20px;
}

.pricing-card h3 {
  font-size: 32px;
  margin-bottom: 30px;
}

.old-price {
  font-size: 40px;
  text-decoration: line-through;
  margin-bottom: 10px;
}

.new-price {
  font-size: 42px;
  margin-bottom: 40px;
}

/* -------- MAIL CTA BUTTON -------- */

.mail-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 2px solid #000;
  border-radius: 50px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
}

.mail-cta span:first-child {
  font-size: 20px;
}

.mail-cta:hover {
  background: #000;
  color: #fff;
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .top-bar,
  .pricing-hero,
  .pricing-section {
    padding: 40px 20px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .nav-pills {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .pricing-card {
    border-radius: 40px;
  }
}

/* Next spotlight section */

.pill-section {
  padding: clamp(60px, 10vh, 100px) 20px;
  display: flex;
  justify-content: center;
}

.pill-container {
  display: flex;
  gap: clamp(20px, 4vw, 40px);
  flex-wrap: wrap;
  justify-content: center;
}

.pill {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 18px;
  text-decoration: none;
  color: #111;

  padding: 16px 40px;
  border-radius: 999px;
  border: 1px solid;

  transition: all 0.3s ease;
}

.green { border-color: #1B7F5C; }
.purple { border-color: #B058E6; }
.blue { border-color: #2D6CDF; }
.red { border-color: #E04B4B; }

.green:hover { background: rgba(27,127,92,0.08); }
.purple:hover { background: rgba(176,88,230,0.08); }
.blue:hover { background: rgba(45,108,223,0.08); }
.red:hover { background: rgba(224,75,75,0.08); }


/* footer section */

.footer {
  padding: 80px 60px;
  background: #f5f5f5;
  font-family: 'Inter', sans-serif;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.footer-left h2 {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.3;
}

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

.footer-links ul {
  list-style: disc;
}

.footer-links a {
  text-decoration: underline;
  font-size: 20px;
  color: #000;
}

.footer-contact {
  max-width: 350px;
}

.footer-contact h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-contact p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.footer-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #D8B66A;
  border-radius: 30px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.footer-divider {
  height: 1px;
  background: #ddd;
  margin: 50px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  font-size: 40px;
  font-weight: 700;
}

.footer-policy a {
  margin-right: 20px;
  text-decoration: underline;
  font-size: 14px;
  color: #000;
}

.footer-social {
  display: flex;
  gap: 15px;
  align-items: center;
}

.footer-legal {
  margin-top: 40px;
  font-size: 13px;
  line-height: 1.6;
  color: #555;
}

/* responsiveness */

@media (max-width: 1024px) {

  .impact-container {
    flex-direction: column;
    gap: 50px;
  }

  .divider {
    display: none;
  }

  .assist-section {
    flex-direction: column;
  }

  .assist-right {
    height: 400px;
  }

  .assist-card {
    right: 20px;
    bottom: 20px;
    max-width: 80%;
  }

  .footer-top {
    flex-direction: column;
    gap: 50px;
  }

  .footer-links {
    gap: 40px;
  }

}

@media (max-width: 768px) {

  .hero {
    padding: 140px 20px 40px;
  }

  .tagline {
    font-size: 22px;
    line-height: 1.35;
  }

  .feature-strip {
    overflow-x: auto;
    padding: 0 20px;
  }

  .strip-item {
    flex: 0 0 auto;
  }

  .assist-left {
    padding: 50px 20px;
  }

  .assist-left h2 {
    font-size: 32px;
  }

  .footer {
    padding: 60px 20px;
  }

  .footer-left h2 {
    font-size: 28px;
  }

}

@media (max-width: 900px) {

  .assist-section {
    flex-direction: column;
  }

  .assist-right {
    height: 400px;
  }

  .assist-card {
    right: 20px;
    bottom: 20px;
    max-width: 85%;
  }

}

@media (max-width: 900px) {

  .impact-container {
    flex-direction: column;
    gap: 60px;
  }

  .divider {
    display: none;
  }

}

@media (max-width: 768px) {

  .hero {
    padding: 130px 20px 40px;
  }

  .tagline {
    font-size: 22px;
    line-height: 1.4;
  }

}

@media (max-width: 900px) {

  .feature-strip {
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 20px;
  }

  .strip-item {
    flex: 0 0 auto;
  }

}

@media (max-width: 900px) {

  .footer-top {
    flex-direction: column;
    gap: 50px;
  }

  .footer-links {
    gap: 40px;
  }

  .footer {
    padding: 60px 20px;
  }

}

/* -------- REFUND SECTION -------- */

.refund-section {
  padding: 60px clamp(20px, 6vw, 120px);
  background: #ffffff;
}

.refund-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.refund-tag {
  padding: 12px 30px;
  border-radius: 40px;
  border: 1px solid #000;
  font-size: 18px;
}

.refund-button {
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  color: #000;
  border-bottom: 1px solid #000;
  padding-bottom: 4px;
  transition: 0.3s ease;
}

.refund-button:hover {
  opacity: 0.6;
}

/* -------- GLOBAL RESPONSIVE FIX -------- */

img {
  max-width: 100%;
  height: auto;
}

/* Fix pricing padding scaling */
.pricing-section {
  padding: 60px clamp(20px, 6vw, 120px);
}

.pricing-hero {
  padding: 40px clamp(20px, 6vw, 120px);
}

/* Better grid scaling */
@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

.pricing-grid {
  grid-template-columns: 1fr;
  justify-items: center;   /* centers grid items */
}

.pricing-card {
  width: 100%;
  max-width: 420px;        /* keeps card nicely centered */
  margin: 0 auto;          /* ensures perfect centering */
}

  .pricing-card h3 {
    font-size: 24px;
  }

  .old-price {
    font-size: 28px;
  }

  .new-price {
    font-size: 30px;
  }

  .refund-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {

  .pricing-hero {
    padding: 40px 20px;
    display: flex;
    justify-content: center;   /* centers horizontally */
  }

  .category-tag {
    text-align: center;
  }

}
@media (max-width: 768px) {

  .pricing-hero {
    margin-bottom: 5px;
  }

  .pricing-section {
    padding-top: 5px;
  }

}