/* =============================================
   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: calc(100% + 10px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-3);
  border-radius: var(--r-lg);
  padding: 1rem;
  min-width: 280px;
  box-shadow: var(--sh-lg);
  opacity: 0;
  pointer-events: none;
  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: 9px 12px;
  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);
  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-link:hover {
  background: var(--g-mist);
  color: var(--g-dark);
}
.mobile-sub {
  padding-left: 1.5rem;
}
.mobile-sub .mobile-link {
  font-size: 0.85rem;
  color: var(--gray-5);
  padding: 7px 12px;
}
.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 {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.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: 56px;
  height: 56px;
  background: var(--g-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  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;
  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;
  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;
  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-accent);
}
.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: 0 1.5rem 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;
  transition: var(--t);
}
.team-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}
.team-avatar-wrap {
  height: 160px;
  background: var(--g-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}
.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;
  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);
}

/* 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);
  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);
}