/* =============================================
   ATHARVA SOLUTIONS — MAIN STYLESHEET
   ============================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --g-darkest: #0d2b1a;
  --g-dark: #1a4a2e;
  --g-mid: #2d6a4f;
  --g-base: #40916c;
  --g-accent: #52b788;
  --g-light: #95d5b2;
  --g-pale: #d8f3dc;
  --g-mist: #f0faf3;
  --gold: #c8a84b;
  --cream: #f9f6f1;
  --white: #ffffff;
  --charcoal: #1a1a1a;
  --gray-7: #374151;
  --gray-5: #6b7280;
  --gray-3: #d1d5db;
  --gray-1: #f3f4f6;
  --red: #dc2626;
   --font-display: "Cinzel", serif;
  --font-body: "DM Sans", sans-serif;
  --nav-h: 72px;
  --max-w: 1280px;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --sh-sm: 0 1px 8px rgba(26, 74, 46, 0.08);
  --sh-md: 0 4px 20px rgba(26, 74, 46, 0.12);
  --sh-lg: 0 12px 48px rgba(26, 74, 46, 0.16);
  --t: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* UTILS */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.section {
  padding: 5rem 0;
}
.section-sm {
  padding: 3rem 0;
}
.section-lg {
  padding: 7rem 0;
}
.bg-cream {
  background: var(--cream);
}
.bg-dark {
  background: var(--g-dark);
}
.bg-mist {
  background: var(--g-mist);
}

.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--g-accent);
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--g-dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-title.light {
  color: var(--white);
}
.section-sub {
  font-size: 1rem;
  color: var(--gray-5);
  line-height: 1.8;
  font-weight: 300;
  max-width: 580px;
}
.section-sub.center {
  margin: 0 auto;
  text-align: center;
}
.section-sub.light {
  color: rgba(255, 255, 255, 0.6);
}
.text-center {
  text-align: center;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--t);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn-primary {
  background: var(--g-dark);
  color: var(--white);
  border-color: var(--g-dark);
}
.btn-primary:hover {
  background: var(--g-mid);
  border-color: var(--g-mid);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}
.btn-outline {
  background: transparent;
  color: var(--g-dark);
  border-color: var(--g-dark);
}
.btn-outline:hover {
  background: var(--g-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--g-darkest);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #d4a83f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 168, 75, 0.3);
}
.btn-white {
  background: var(--white);
  color: var(--g-dark);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--g-pale);
  transform: translateY(-2px);
}
.btn-white-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-white-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}
.btn-sm {
  padding: 9px 18px;
  font-size: 0.82rem;
}
.btn-lg {
  padding: 16px 34px;
  font-size: 1rem;
}

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(26, 74, 46, 0.06);
  transition: var(--t);
}
#navbar.scrolled {
  box-shadow: var(--sh-sm);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--g-dark);
  border-radius: 10px;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo-main {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--g-dark);
  line-height: 1;
}
.nav-logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--g-accent);
  text-transform: uppercase;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 13px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-7);
  text-decoration: none;
  border-radius: var(--r-sm);
  transition: var(--t);
}
.nav-link:hover,
.nav-link.active {
  color: var(--g-dark);
  background: var(--g-mist);
}
.nav-arrow {
  transition: transform var(--t);
  font-size: 0.7rem;
}
.nav-item:hover .nav-arrow {
  transform: rotate(180deg);
}

/* Mega dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: -100%;
  background: var(--white);
  border: 1px solid var(--gray-3);
  border-radius: var(--r-lg);
  min-width: 280px;
  box-shadow: var(--sh-lg);
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transform: translateY(-8px);
  transition: var(--t);
  z-index: 100;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 12px;
  min-width: 300px;
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: var(--t);
}
.dropdown-item:hover {
  background: var(--g-mist);
}
.dropdown-item-icon {
  width: 34px;
  height: 34px;
  background: var(--g-pale);
  color: var(--g-dark);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.dropdown-item-text-main {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--g-dark);
}
.dropdown-item-text-sub {
  font-size: 0.75rem;
  color: var(--gray-5);
}
.nav-cta {
  margin-left: 0.75rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--t);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--white);
  z-index: 998;
  border-bottom: 1px solid var(--gray-3);
  box-shadow: var(--sh-md);
  flex-direction: column;
  gap: 2px;
  padding: 1rem 1.5rem 1.5rem;
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.mobile-menu.open {
  display: flex;
}
.mobile-link {
  display: block;
  padding: 10px 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-7);
  text-decoration: none;
  border-radius: var(--r-sm);
  transition: var(--t);
}
.mobile-collapse-toggle {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  appearance: none;
}
.mobile-link:hover {
  background: var(--g-mist);
  color: var(--g-dark);
}
.mobile-sub {
  padding: 5px;
  padding-left: 1rem;
}
.mobile-sub .mobile-link {
  font-size: 0.85rem;
  color: var(--gray-5);
  padding: 12px;
  transition: all 0.3s linear;
  &:hover {
    color: var(--g-dark);
  }
}
.mobile-divider {
  height: 1px;
  background: var(--gray-3);
  margin: 0.5rem 0;
}
@media (max-width: 1000px) {
  .nav-menu {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

/* PAGE HEADER */
.page-header {
  background: var(--g-dark);
  padding: 5.5rem 0 3.5rem;
  margin-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: rgba(82, 183, 136, 0.06);
  border-radius: 50%;
}
.page-header::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 350px;
  height: 350px;
  background: rgba(82, 183, 136, 0.04);
  border-radius: 50%;
}
.page-header-inner {
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1rem;
  list-style: none;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--g-accent);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--g-light);
}
.breadcrumb span {
  opacity: 0.4;
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.85rem;
}
.page-header p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  font-weight: 300;
}

/* TRUST BAR */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--gray-3);
  border-bottom: 1px solid var(--gray-3);
}
.trust-bar-inner {
  margin: 0 auto;
  padding: 0.9rem 2rem;
}
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@media (max-width: 991px) {
  .trust-item {
    justify-content: start;
    padding-bottom: 10px;
  }
}

@media (max-width: 1200px) {
  .trust-banner .trust-item {
    justify-content: start;
    padding-bottom: 10px;
  }
}

.trust-item span {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-7);
}

/* STAT STRIP */
.stat-strip {
  background: var(--g-dark);
  padding: 3.5rem 0;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--g-accent);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-lbl {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}
@media (max-width: 640px) {
  .stat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

/* CARDS */
.card {
  background: var(--white);
  border: 1px solid var(--gray-3);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: var(--t);
}
.card:hover {
  border-color: var(--g-accent);
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}
.card-icon {
  width: 45px;
  height: 45px;
  background: var(--g-pale);
  color: var(--g-dark);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}
.card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--g-dark);
  margin-bottom: 0.5rem;
}
.card p {
  font-size: 0.875rem;
  color: var(--gray-5);
  line-height: 1.75;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--g-accent);
  margin-top: 1rem;
  text-decoration: none;
  transition: gap var(--t);
}
.card-link:hover {
  gap: 10px;
}

/* GRIDS */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
@media (max-width: 960px) {
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* FORMS */
.form-group {
  margin-bottom: 1.2rem;
}
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--g-dark);
  margin-bottom: 6px;
}
.form-label .req {
  color: var(--red);
}
.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-3);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--white);
  transition:
    border-color var(--t),
    box-shadow var(--t);
  outline: none;
}
.form-control:focus {
  border-color: var(--g-accent);
  box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.12);
}
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
textarea.form-control {
  resize: vertical;
  min-height: 130px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--g-dark);
  color: var(--white);
  border: none;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--t);
}
.form-submit:hover {
  background: var(--g-mid);
  transform: translateY(-1px);
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* FOOTER */
#footer {
  /* background: #111; */
  background: linear-gradient(
  135deg,
  var(--g-darkest) 0%,
  #070707 50%,
  #000000 100%
);
  color: rgba(255, 255, 255, 0.65);
}
.footer-top {
  padding: 5rem 0 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 540px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.75;
  max-width: 270px;
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}
.footer-brand-icon {
  width: 38px;
  height: 38px;
  background: var(--g-accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.footer-brand-tagline {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--g-accent);
  text-transform: uppercase;
}
.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 1.5rem;
}
.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  transition: var(--t);
}
.social-link:hover {
  background: var(--g-accent);
  color: var(--g-darkest);
}
.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding-left: 0;
  gap: 0.6rem;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color var(--t);
}
.footer-links a:hover {
  color: var(--g-accent);
}
.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  align-items: flex-start;
}
.footer-contact-icon {
  flex-shrink: 0;
  margin-top: 1px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
}
.footer-bottom a:hover {
  color: var(--g-accent);
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.d1 {
  transition-delay: 0.1s;
}
.reveal.d2 {
  transition-delay: 0.2s;
}
.reveal.d3 {
  transition-delay: 0.3s;
}
.reveal.d4 {
  transition-delay: 0.4s;
}
.reveal.d5 {
  transition-delay: 0.5s;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* TOASTER */
.toaster-wrap {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}
.toast {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  border-left: 4px solid var(--g-accent);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--sh-lg);
  min-width: 300px;
  max-width: 380px;
  pointer-events: all;
  animation: toastIn 0.4s ease forwards;
}
.toast.error {
  border-left-color: var(--red);
}
@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes toastOut {
  to {
    opacity: 0;
    transform: translateX(40px);
  }
}
.toast-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}
.toast-body {
  flex: 1;
}
.toast-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
}
.toast-msg {
  font-size: 0.8rem;
  color: var(--gray-5);
}
.toast-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-5);
  font-size: 1.1rem;
  padding: 0;
  flex-shrink: 0;
}

/* MISC */
.badge-green {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: var(--g-pale);
  color: var(--g-dark);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.badge-green::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--g-accent);
  border-radius: 50%;
  display: block;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

/* Feature list */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding-left: 0;
  gap: 0.75rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-7);
}
.feature-list li::before {
  content: "✓";
  color: var(--g-accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.feature-list.light li {
  color: rgba(255, 255, 255, 0.8);
}
.feature-list.light li::before {
  color: var(--g-light);
}

/* CTA Banner */
.cta-banner {
  background: var(--g-dark);
  padding: 5rem 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}
.cta-inner p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  font-weight: 300;
  max-width: 500px;
}

/* Testimonials */
.testi-card {
  background: var(--white);
  border: 1px solid var(--gray-3);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: var(--t);
}
.testi-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}
.stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.testi-quote {
  font-size: 0.9rem;
  color: var(--gray-7);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.25rem;
  padding-left: 1rem;
  border-left: 3px solid var(--g-accent);
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--g-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testi-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--g-dark);
}
.testi-role {
  font-size: 0.78rem;
  color: var(--gray-5);
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 0;
}
@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .process-grid::before {
    display: none;
  }
}
@media (max-width: 480px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 1rem;
}
.process-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--g-accent);
  transition: var(--t);
}
.process-step:hover .process-num {
  background: var(--g-accent);
  color: var(--g-darkest);
}
.process-step h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.process-step p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}

/* Accordion */
.accordion-item {
  border: 1px solid var(--gray-3);
  border-radius: var(--r-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.925rem;
  color: var(--g-dark);
  background: var(--white);
  transition: background var(--t);
  user-select: none;
}
.accordion-header:hover,
.accordion-header.open {
  background: var(--g-mist);
}
.accordion-arrow {
  transition: transform var(--t);
  font-size: 1rem;
  color: var(--g-dark);
}
.accordion-header.open .accordion-arrow {
  transform: rotate(180deg);
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion-body.open {
  max-height: 600px;
}
.accordion-body-inner {
  padding: 1.25rem;
  font-size: 0.9rem;
  color: var(--gray-5);
  line-height: 1.75;
}

/* Team */
.team-card {
  background: var(--white);
  border: 1px solid var(--gray-3);
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 400px;
  transition: var(--t);
}
.team-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}
.team-avatar-wrap {
  height: 240px;
  background: var(--g-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}
.team-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  padding: 1.25rem;
}
.team-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--g-dark);
}
.team-role {
  font-size: 0.8rem;
  color: var(--g-accent);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.team-bio {
  font-size: 0.82rem;
  color: var(--gray-5);
  line-height: 1.65;
}

/* Industry pill */
.ind-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.9rem 1.25rem;
  height: 100%;
  border: 1px solid var(--gray-3);
  border-radius: var(--r-md);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-7);
  transition: var(--t);
}
.ind-pill:hover {
  border-color: var(--g-accent);
  background: var(--g-mist);
  color: var(--g-dark);
}

.ind-page .ind-pill {
  border-color:rgba(255,255,255,.12);
  color:rgba(255,255,255,.75)
}

.ind-page .ind-pill:hover {
  color: var(--g-accent) !important;
  border-color: var(--g-accent) !important;
  background-color: transparent;
  cursor: default;
}

/* Split layout helper */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.split-reverse {
  grid-auto-flow: dense;
}
.split-reverse > *:first-child {
  grid-column: 2;
}
.split-reverse > *:last-child {
  grid-column: 1;
}
@media (max-width: 768px) {
  .split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .split-reverse > *:first-child,
  .split-reverse > *:last-child {
    grid-column: 1;
  }
}

/* Green box */
.green-box {
  background: var(--g-dark);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  color: var(--white);
}
.green-box h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--g-light);
  margin-bottom: 1.25rem;
}

/* Package pricing */
.package-card {
  background: var(--white);
  border: 2px solid var(--gray-3);
  border-radius: var(--r-xl);
  padding: 2rem;
  transition: var(--t);
  text-align: center;
  position: relative;
}
.package-card.featured {
  border-color: var(--g-accent);
}
.package-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--g-accent);
  color: var(--g-darkest);
  padding: 4px 18px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}
.package-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--g-dark);
}
.package-price {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--g-dark);
  margin: 1rem 0;
}
.package-price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--gray-5);
}
.package-features {
  list-style: none;
  text-align: left;
  margin: 1.25rem 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.package-features li {
  font-size: 0.85rem;
  color: var(--gray-7);
  display: flex;
  align-items: center;
  gap: 8px;
}
.package-features li::before {
  content: "✓";
  color: var(--g-accent);
  font-weight: 700;
  flex-shrink: 0;
}
.package-features li.no::before {
  content: "✕";
  color: var(--gray-3);
}

/* Why card */
.why-feat {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}
.why-feat-icon {
  width: 44px;
  height: 44px;
  background: var(--g-pale);
  color: var(--g-dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.why-feat h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--g-dark);
  margin-bottom: 4px;
}
.why-feat p {
  font-size: 0.875rem;
  color: var(--gray-5);
  line-height: 1.65;
}

.logo img{
  width: 175px;
}
h1, h2, h3, .title {
    font-family: var(--font-display);
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.milestone {
  margin-bottom: 20px;
}

.milestone-year {
  color: var(--g-accent);
}

.industry-wrapper i {
  color: var(--g-dark);
}

/* Footer */

/* ============================= */
/* FOOTER GRAPHIC ICONS */
/* ============================= */

#footer {
  position: relative;
  overflow: hidden;
}

#footer .container {
  position: relative;
  z-index: 2;
}

.footer-graphics {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.footer-shape {
  position: absolute;
  font-size: 160px;
  color: var(--g-dark);
  z-index: 1;
  opacity: 0.4;
}

.footer-shape-1 {
  bottom: -30px;
  left: 50px;
  transform: rotate(-15deg);
  font-size: 140px;
}

.service-image-wrapper{
    width: 100%;
    height: 100%;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--sh-md);
}

.industry-image-wrapper,
.register-img-wrapper,
.payroll-img-wrapper {
    width: 100%;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--sh-md);
}

.industry-image-wrapper img,
.payroll-img-wrapper img,
.register-img-wrapper img {
  width: 100%;
  height: auto;
}

.payroll-container .card,
.register-container .card {
  height: 100%;
  padding: 20px;
}

.payroll-container .card p {
  line-height: 1.4;
}

@media (min-width: 600px) and (max-width: 991px) {
  .service-image-wrapper,
  .industry-image-wrapper,
  .payroll-img-wrapper {
    max-height: 250px;
    width: auto;
  }

  .reg-con {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .register-img-wrapper{
    width: 60vw;
    height: auto;
  }
}

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

.service-strip-card {
    background: var(--white);
    border: 1px solid var(--gray-3);
    border-radius: var(--r-lg);
    padding: 1rem;
    height: 100%; 
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: var(--t);
}

.service-strip-card::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--g-accent), var(--g-base));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t);
}

.service-strip-card:hover {
    transform: translateY(-4px);
    border-color: var(--g-accent);
    box-shadow: var(--sh-md);
}

.service-strip-card:hover::after {
    transform: scaleX(1);
}

.service-strip-card h3 {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    color: var(--g-dark);
    font-weight: 600;
}

.service-strip-card p {
    font-size: 14px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-strip-card .card-link {
    margin-top: auto;
}

.cta-with-image {
  position: relative;
  overflow: hidden;
}

.cta-img-wrapper {
  position: absolute;
  bottom: -35px;
  right: 0;
  width: 45%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.cta-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.7;
}

.faq-wrapper {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.faq-wrapper .faq-img {
  position: absolute;
  height: 500px;
  width: auto;
  bottom: 0;
}

.faq-wrapper .faq-img-head {
  bottom: 50px;
}

.register-grid i {
  color: var(--g-dark);
}

.contact-info-card{
    background:#fff;
    border:1px solid var(--gray-3);
    border-radius:var(--r-lg);
    padding:2rem;
    height:100%;
    box-shadow:var(--sh-sm);
}

.contact-title{
    color:var(--g-dark);
    margin-bottom:1.75rem;
}

.contact-info-item{
    display:flex;
    gap:1rem;
    align-items:flex-start;
    padding-bottom:1rem;
    margin-bottom:1rem;
    border-bottom:1px solid var(--gray-1);
}

.contact-info-icon{
    width:46px;
    height:46px;
    border-radius:10px;
    background:var(--g-mist);
    color:var(--g-dark);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.contact-info-label{
    font-size:.75rem;
    text-transform:uppercase;
    letter-spacing:.08em;
    font-weight:700;
    color:var(--gray-5);
    margin-bottom:4px;
}

.contact-info-value{
    color:var(--gray-7);
    line-height:1.7;
}

.contact-info-value a{
    color:var(--g-dark);
    text-decoration:none;
}

.contact-info-value a:hover{
    color:var(--g-base);
}

.contact-social{
    display:flex;
    gap:.75rem;
    margin:1.5rem 0;
}

.contact-social a{
    width:40px;
    height:40px;
    border-radius:8px;
    background:var(--g-dark);
    color: white;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:var(--t);
}

.contact-social a:hover{
    background:var(--g-dark);
    transform: translateY(-3px);
    color:#fff;
}

.contact-map{
    overflow:hidden;
    border-radius:var(--r-md);
    border:1px solid var(--gray-3);
}

.contact-map iframe{
    width:100%;
    height:220px;
    border:0;
    display:block;
}

.custom-toast {
    position:fixed;
    top:20px;
    right:20px;
    font-size: 14px;
    background:#129943;
    color:#fff;
    padding: 12px;
    border-radius:6px;
    z-index:9999;
    opacity:0;
    transform:translateY(30px);
    transition:all .3s ease;
}

/* ===== ABOUT VALUES SECTION ===== */

.ath-value-chip{
    display:flex;
    align-items:flex-start;
    gap:1rem;
    height:100%;
    background:#fff;
    border:1px solid var(--gray-2);
    border-radius:20px;
    padding:1.4rem;
    transition:var(--t);
}

.ath-value-chip:hover{
    transform:translateY(-4px);
    border-color:var(--g-pale);
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.ath-value-icon{
    width:52px;
    height:52px;
    min-width:52px;
    border-radius:14px;
    background:var(--g-mist);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--g-dark);
    font-size:1.15rem;
}

.ath-value-content h4{
    font-size:1rem;
    font-weight:700;
    color:var(--g-dark);
    margin-bottom:.45rem;
}

.ath-value-content p{
    margin:0;
    font-size:.88rem;
    line-height:1.7;
    color:var(--gray-5);
}

@media(max-width:768px){

    .ath-value-chip{
        padding:1.15rem;
        gap:.85rem;
    }

    .ath-value-icon{
        width:46px;
        height:46px;
        min-width:46px;
        font-size:1rem;
    }

}


/* =============================================
   BLOG SINGLE PAGE
   ============================================= */

.blog-featured-image {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  background: var(--white);
}

.blog-featured-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.blog-content {
  margin-top: 1.5rem;
}

.blog-section-title {
  margin-bottom: 1rem;
}

.blog-text {
  color: var(--gray-7);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.blog-highlight-box {
  background: var(--g-mist);
  border: 1px solid var(--g-pale);
  border-radius: var(--r-xl);
  padding: 1.5rem 1.6rem;
  margin: 2rem 0;
}

.blog-highlight-box h3 {
  color: var(--g-dark);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.blog-highlight-list {
  padding-left: 1.1rem;
  margin: 0;
  color: var(--gray-7);
  line-height: 1.85;
}

.blog-sidebar {
  background: var(--cream);
  border: 1px solid var(--gray-3);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}

.related-posts {
  display: grid;
  gap: 1rem;
}

.related-post-link {
  text-decoration: none;
  color: inherit;
}

.related-post {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 0.9rem;
  align-items: center;
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 1px solid rgba(26, 74, 46, 0.06);
  transition: var(--t);
}

.related-post:hover {
  transform: translateY(-2px);
}

.related-post img {
  width: 100%;
  height: 96px;
  object-fit: cover;
}

.related-post-content {
  padding-right: 0.9rem;
}

.related-post-title {
  font-weight: 600;
  color: var(--g-dark);
  line-height: 1.4;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.help-box {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: var(--r-lg);
  background: linear-gradient(
    135deg,
    var(--g-dark),
    var(--g-mid)
  );
  color: var(--white);
}

.help-box-text {
  margin-bottom: 1rem;
  line-height: 1.5;
  font-size: 14px;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Responsive Featured Image */

@media (max-width: 992px) {
  .blog-featured-image img {
    height: 340px;
  }
}

@media (max-width: 768px) {
  .blog-featured-image img {
    height: 260px;
  }

}

@media (max-width: 576px) {
  .blog-featured-image img {
    height: 220px;
  }

  .related-post {
    grid-template-columns: 80px 1fr;
  }

  .related-post img {
    height: 80px;
  }
}

.service-card-container .card{
  justify-content: space-between;
}

/* =============================================
   BUSINESS ADVISORY PAGE
   ============================================= */

.section-sub-full {
  max-width: 100%;
  margin-bottom: 2rem;
}

.advisory-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.advisory-card {
  background: var(--g-mist);
  border: 1px solid var(--g-pale);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: var(--t);
}

.advisory-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}

.advisory-card-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--g-dark);
}

.advisory-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--g-dark);
  margin-bottom: 0.4rem;
}

.advisory-card-text {
  font-size: 0.875rem;
  color: var(--gray-5);
  line-height: 1.7;
}

.section-heading-gap {
  margin-bottom: 2.5rem;
}

.faq-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.accordion-body-dark {
  color: rgba(255, 255, 255, 0.65);
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}