:root {
  --teal: #22abad;
  --teal-dark: #168f91;
  --teal-soft: rgba(34, 171, 173, 0.12);
  --charcoal: #373435;
  --charcoal-dark: #1f1f21;
  --white: #ffffff;
  --off-white: #f7f9fb;
  --light-grey: #eef2f5;
  --medium-grey: #6b7280;
  --border: #e5e7eb;
  --danger: #dc2626;
  --success: #059669;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shadow-soft: 0 14px 38px rgba(31, 31, 33, 0.10);
  --shadow-card: 0 18px 50px rgba(31, 31, 33, 0.14);
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  color: var(--charcoal);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font-family: inherit;
}

img {
  max-width: 100%;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo-img {
  width: 205px;
  height: auto;
  display: block;
}

.mobile-menu-btn {
  display: none;
  width: 46px;
  height: 42px;
  border: none;
  background: var(--charcoal);
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  border-radius: 999px;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 3px;
  margin: 0;
  padding: 0;
}

.nav-list > li {
  position: relative;
}

.nav-link,
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 12px;
  border: none;
  background: transparent;
  color: var(--charcoal);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: 999px;
  transition: 0.22s ease;
}

.nav-link:hover,
.dropdown-toggle:hover {
  background: var(--teal-soft);
  color: var(--teal-dark);
}

.dropdown-arrow {
  margin-left: 5px;
  font-size: 0.75rem;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 48px;
  left: 0;
  min-width: 260px;
  list-style: none;
  margin: 0;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--charcoal);
  font-size: 0.92rem;
  font-weight: 650;
  transition: 0.22s ease;
}

.dropdown-menu a:hover {
  background: var(--teal-soft);
  color: var(--teal-dark);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 20px;
  background: var(--teal);
  color: var(--white);
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(34, 171, 173, 0.25);
  transition: 0.22s ease;
}

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

/* Hero */

.hero-section {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
  padding: 110px 0 90px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(31, 31, 33, 0.90), rgba(34, 171, 173, 0.72)),
    url("/assets/images/image3.jpg");
  background-size: cover;
  background-position: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.16), transparent 28%),
    radial-gradient(circle at 80% 80%, rgba(34, 171, 173, 0.22), transparent 32%);
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.hero-kicker {
  display: inline-flex;
  padding: 9px 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-content-wrap h1 {
  max-width: 950px;
  margin: 22px auto 18px;
  font-size: clamp(2.5rem, 6vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero-subtitle {
  max-width: 820px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.hero-search-box {
  max-width: 980px;
  margin: 42px auto 0;
  padding: 24px;
  background: var(--white);
  color: var(--charcoal);
  border-radius: 28px;
  box-shadow: var(--shadow-card);
}

.search-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 18px;
}

.search-tab {
  border: 1px solid var(--border);
  background: var(--off-white);
  color: var(--charcoal);
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: 0.22s ease;
}

.search-tab.active,
.search-tab:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.smart-search-bar {
  display: flex;
  gap: 10px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px;
}

.smart-search-bar input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 0 18px;
  font-size: 1rem;
  color: var(--charcoal);
}

.search-btn {
  border: none;
  background: var(--charcoal);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.22s ease;
}

.search-btn:hover {
  background: var(--teal-dark);
}

.quick-picks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
}

.quick-picks button {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--charcoal);
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.quick-picks button:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.ai-result-box {
  margin-top: 18px;
  padding: 15px 18px;
  background: var(--teal-soft);
  border: 1px solid rgba(34, 171, 173, 0.28);
  border-radius: 16px;
  text-align: left;
  line-height: 1.6;
}

.hero-stats {
  max-width: 800px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hero-stats div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  font-weight: 700;
}

.hero-stats span {
  display: block;
  font-size: 2rem;
  font-weight: 950;
  color: var(--white);
}

/* Sections */

.category-section,
.featured-section,
.wizard-section,
.employee-section {
  padding: 82px 0;
}

.category-section {
  background: var(--off-white);
}

.section-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 42px;
}

.section-kicker {
  color: var(--teal-dark);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.section-heading h2,
.wizard-content h2 {
  color: var(--charcoal-dark);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.035em;
}

.section-heading p {
  color: var(--medium-grey);
}

/* Categories */

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.category-card {
  background: var(--white);
  padding: 24px 18px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(229, 231, 235, 0.8);
  text-align: center;
  transition: 0.25s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: rgba(34, 171, 173, 0.45);
}

.category-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid var(--teal-soft);
  background: var(--light-grey);
}

.category-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card h3 {
  margin: 0 0 10px;
  color: var(--charcoal-dark);
  font-size: 1.05rem;
}

.category-card p {
  margin: 0;
  color: var(--medium-grey);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* Listings */

.featured-section {
  background: var(--white);
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.listing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: 0.25s ease;
}

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

.featured-listing {
  border: 2px solid rgba(34, 171, 173, 0.45);
}

.listing-image {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: var(--light-grey);
}

.listing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  background: var(--teal);
  color: var(--white);
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.listing-body {
  padding: 24px;
}

.listing-body h3 {
  margin: 0 0 10px;
  color: var(--charcoal-dark);
  font-size: 1.35rem;
}

.listing-body p {
  color: var(--medium-grey);
  line-height: 1.65;
}

.listing-body ul,
.plan-card ul {
  padding-left: 18px;
  color: var(--medium-grey);
  line-height: 1.8;
}

.listing-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 20px;
}

.listing-price {
  color: var(--teal-dark);
  font-size: 1.8rem;
  font-weight: 950;
}

.card-btn,
.primary-link-btn,
.plan-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.22s ease;
}

.card-btn {
  padding: 11px 18px;
  background: var(--charcoal);
  color: var(--white);
}

.card-btn:hover,
.primary-link-btn:hover,
.plan-btn:hover {
  transform: translateY(-1px);
}

/* Wizard */

.wizard-section {
  background:
    linear-gradient(135deg, rgba(31, 31, 33, 0.96), rgba(34, 171, 173, 0.86)),
    url("/assets/images/image4.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.wizard-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.wizard-content h2 {
  color: var(--white);
}

.wizard-content p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
  line-height: 1.75;
}

.wizard-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0;
}

.wizard-points div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 800;
}

.wizard-points span {
  display: block;
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.primary-link-btn {
  padding: 14px 24px;
  background: var(--white);
  color: var(--charcoal);
}

.wizard-card {
  background: var(--white);
  color: var(--charcoal);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.wizard-message {
  padding: 14px 16px;
  border-radius: 18px;
  margin-bottom: 14px;
  line-height: 1.55;
}

.wizard-message.bot {
  background: var(--teal-soft);
  border-bottom-left-radius: 4px;
}

.wizard-message.user {
  background: var(--charcoal);
  color: var(--white);
  border-bottom-right-radius: 4px;
}

.wizard-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.wizard-options button {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--charcoal);
  padding: 12px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.wizard-options button:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

/* Employee */

.employee-section {
  background: var(--off-white);
}

.light-heading h2 {
  color: var(--charcoal-dark);
}

.employee-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 440px));
  justify-content: center;
  gap: 26px;
}

.plan-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
}

.highlighted-plan {
  border: 2px solid var(--teal);
  box-shadow: var(--shadow-card);
}

.plan-top h3 {
  margin: 0 0 8px;
  color: var(--charcoal-dark);
  font-size: 1.45rem;
}

.plan-top p {
  margin: 0;
  color: var(--medium-grey);
}

.plan-price {
  margin: 24px 0 12px;
  color: var(--charcoal-dark);
  font-size: 3rem;
  font-weight: 950;
}

.plan-price span {
  color: var(--medium-grey);
  font-size: 1rem;
  font-weight: 700;
}

.plan-btn {
  width: 100%;
  margin-top: 18px;
  padding: 14px 18px;
  background: var(--charcoal);
  color: var(--white);
}

.primary-plan-btn {
  background: var(--teal);
}

/* Footer */

.site-footer {
  background: var(--charcoal-dark);
  color: var(--white);
  padding: 54px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 34px;
}

.footer-brand img {
  width: 250px;
  max-width: 100%;
  height: auto;
  margin-bottom: 16px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.site-footer h4 {
  margin-top: 0;
}

.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer li {
  margin-bottom: 10px;
}

/* Tablet */

@media (max-width: 1100px) {
  .brand-logo-img {
    width: 185px;
  }

  .nav-link,
  .dropdown-toggle {
    padding: 10px 9px;
    font-size: 0.86rem;
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

}

@media (max-width: 920px) {
  .mobile-menu-btn {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
  }

  .main-nav.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
  }

  .nav-list > li {
    width: 100%;
  }

  .nav-link,
  .dropdown-toggle,
  .nav-cta {
    width: 100%;
    justify-content: space-between;
    border-radius: 14px;
    padding: 13px 14px;
  }

  .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    border-radius: 14px;
    margin: 5px 0 8px 14px;
    min-width: auto;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .hero-section {
    min-height: auto;
    padding: 90px 0 70px;
  }

  .hero-stats,
  .wizard-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .wizard-points {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile */

@media (max-width: 680px) {
  :root {
    --header-height: 78px;
  }

  .brand-logo-img {
    width: 190px;
  }

  .hero-section {
    padding: 70px 0 54px;
  }

  .hero-search-box {
    padding: 18px;
    border-radius: 22px;
  }

  .smart-search-bar {
    flex-direction: column;
    border-radius: 20px;
  }

  .smart-search-bar input {
    padding: 14px;
  }

  .search-btn {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .listing-grid,
  .employee-plan-grid,
  .wizard-points,
  .wizard-options {
    grid-template-columns: 1fr;
  }

  .listing-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .card-btn,
  .primary-link-btn,
  .plan-btn {
    width: 100%;
  }

  .category-section,
  .featured-section,
  .wizard-section,
  .employee-section {
    padding: 58px 0;
  }
}