:root {
  --wallpaper: url("assets/background.png");
  --text: #23403a;
  --muted: #617a74;
  --green: #82c95d;
  --green-deep: #4fa25f;
  --panel: rgba(255, 255, 255, 0.96);
  --panel-border: rgba(182, 221, 214, 0.96);
  --shadow: 0 14px 32px rgba(15, 79, 84, 0.12);
  --sans: "Plus Jakarta Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

@keyframes floatUpDown {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

@keyframes floatUpDownDelay {
  0% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
  100% { transform: translateY(0); }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(141, 223, 104, 0.4); }
  70% { box-shadow: 0 0 0 12px rgba(141, 223, 104, 0); }
  100% { box-shadow: 0 0 0 0 rgba(141, 223, 104, 0); }
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: linear-gradient(180deg, #efefee 0%, #f6fbf6 18%, #d7efe9 58%, #cee7e7 100%);
  overflow-x: hidden;
}

.page-backdrop,
.page-backdrop::before,
.page-backdrop::after {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.page-backdrop {
  z-index: 0;
  background:
    linear-gradient(180deg, #e5e1e1 0 26px, transparent 26px),
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.85), transparent 22%),
    radial-gradient(circle at 88% 20%, rgba(255, 255, 255, 0.28), transparent 18%),
    radial-gradient(circle at 14% 72%, rgba(255, 255, 255, 0.22), transparent 18%);
}

.page-backdrop::before,
.page-backdrop::after {
  content: "";
}

.page-backdrop::before {
  background:
    radial-gradient(150% 30% at 50% 24%, transparent 0 62%, rgba(240, 250, 245, 0.8) 63%, transparent 66%),
    radial-gradient(150% 32% at 50% 44%, transparent 0 63%, rgba(220, 245, 236, 0.72) 64%, transparent 67%),
    radial-gradient(160% 34% at 50% 74%, transparent 0 64%, rgba(244, 251, 248, 0.66) 65%, transparent 68%);
}

.page-backdrop::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
}

.site-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  
}

.topbar__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 75px;
  padding: 8px clamp(12px, 2.2vw, 22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 240px;
}

.brand__logo {
  display: block;
  height: 65px;
  width: auto;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(169, 212, 145, 0.95);
  border-radius: 14px;
  background: rgba(240, 248, 235, 0.96);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #3a6b49;
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle span + span {
  margin-top: 4px;
}

.topbar__menu {
  display: contents;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.main-nav a {
    color: #5f726c;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 700;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }

.main-nav a span {
  font-size: 0.66rem;
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px 4px 10px;
  border: 2px solid #b7dd9e;
  border-radius: 999px;
  background: #edf6e7;
}

.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 12px;
  color: #679c57;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 800;
}

.phone-pill__icon {
  position: relative;
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.phone-pill__icon::before {
  content: "";
  position: absolute;
  right: -3px;
  bottom: -1px;
  width: 5px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(38deg);
}

.social-chips {
  display: flex;
  gap: 6px;
}

.social-chips a {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: linear-gradient(180deg, #38b737, #149d2d);
}

.social-glyph {
  color: rgba(255, 255, 255, 0.95);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.social-glyph--instagram {
  position: relative;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 4px;
}

.social-glyph--instagram::before,
.social-glyph--instagram::after {
  content: "";
  position: absolute;
}

.social-glyph--instagram::before {
  left: 3px;
  top: 3px;
  width: 4px;
  height: 4px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
}

.social-glyph--instagram::after {
  right: 1px;
  top: 1px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
}

.hero-wallpaper,
.section--wallpaper,
.footer--wallpaper {
  background-image: var(--wallpaper);
  background-size: cover;
  background-repeat: no-repeat;
}

.hero {
  position: relative;
  overflow: hidden;
  background-position: center 34%;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(216, 243, 134, 0.86) 0%, rgba(178, 236, 163, 0.74) 20%, rgba(101, 210, 175, 0.7) 56%, rgba(45, 166, 154, 0.78) 100%),
    radial-gradient(circle at 14% 22%, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.18) 24%, rgba(255, 255, 255, 0) 42%),
    radial-gradient(circle at 76% 26%, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 22%),
    radial-gradient(circle at 50% 76%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 28%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(100% 36% at 50% 78%, rgba(255, 255, 255, 0.2), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.02) 100%);
  opacity: 0.9;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: 18px;
  min-height: 500px;
  padding: 42px clamp(14px, 2.8vw, 34px) 80px;
}

.hero__content h1,
.section__heading h2,
.about-block__content h2 {
  margin: 0;
  font-family: var(--sans);
  color: #2c4634;
  letter-spacing: -0.03em;
}

.hero__content h1 {
  max-width: 510px;
  font-size: clamp(3.6rem, 5vw, 5rem);
  line-height: 0.94;
  text-transform: none;
  color: #1f3d36;
}

.hero__content p {
  max-width: 470px;
  margin: 18px 0 22px;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #2b4f47;
  font-weight: 600;
}

.hero__buttons,
.featured-actions,
.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin-top: 20px;
  color: #23433c;
  font-size: 1.05rem;
  font-weight: 700;
}

.hero__highlights span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.featured-actions,
.cta-actions {
  justify-content: center;
  width: 100%;
}

.featured-actions {
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 24px rgba(66, 155, 94, 0.35);
}

.button--primary {
  color: #fff;
  background: linear-gradient(180deg, #8ddf68, #48a95a);
  box-shadow: 0 12px 20px rgba(66, 155, 94, 0.26);
}

.button--secondary {
  color: #37534a;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(98, 135, 122, 0.18);
  box-shadow: 0 8px 16px rgba(71, 110, 110, 0.12);
}

.button--compact {
  min-height: 40px;
}

.button--training {
  flex-direction: column;
  line-height: 1.1;
  padding: 10px 24px;
  min-height: 60px;
  background: linear-gradient(135deg, #5ddd50, #764ba2);
}

.button--training span {
  font-size: 1rem;
  font-weight: 800;
}

.button--training small {
  font-size: 0.65rem;
  font-weight: 700;
  opacity: 0.95;
}

.hero__visual {
  position: relative;
  min-height: 430px;
}

.float-card,
.search-card,
.dashboard {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 18px 36px rgba(13, 80, 87, 0.16), inset 0 0 0 1px rgba(255,255,255,0.8);
  animation: floatUpDown 6s ease-in-out infinite;
}

.float-card {
  display: none;
}

.ghost-row,
.ghost-pill {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #eaf4ef, #d9ede4);
}

.ghost-row--short {
  width: 52%;
}

.ghost-row--long {
  width: 86%;
}

.ghost-pill {
  width: 34%;
  height: 22px;
  background: linear-gradient(180deg, #a8d96f, #61b161);
}

.search-card {
  top: 142px;
  left: 110px;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  padding: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, #a8e44b, #5cab60);
  border: 1px solid rgba(255, 255, 255, 0.55);
  animation: floatUpDownDelay 7s ease-in-out infinite;
}

.search-card__icon {
  position: relative;
  width: 28px;
  height: 28px;
}

.search-ring {
  position: absolute;
  left: 1px;
  top: 1px;
  width: 16px;
  height: 16px;
  border: 3px solid #fff;
  border-radius: 50%;
}

.search-handle {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 11px;
  height: 4px;
  border-radius: 999px;
  background: #fff;
  transform: rotate(45deg);
}

.dashboard {
  top: 24px;
  right: 0;
  width: min(100%, 505px);
  padding: 12px 14px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
}

.dashboard__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.dashboard__badge,
.dashboard__search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.dashboard__badge {
  color: #2d5047;
  background: #eef7f1;
}

.dashboard__search {
  color: #fff;
  background: linear-gradient(180deg, #91d167, #65b864);
}

.dashboard__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 11px;
}

.dashboard__stat,
.dashboard__panel {
  border: 1px solid rgba(213, 233, 228, 0.95);
  background: linear-gradient(180deg, #fbfdfb, #f4faf6);
  border-radius: 14px;
}

.dashboard__stat {
  padding: 12px 13px;
}

.dashboard__stat span,
.dashboard__score span,
.dashboard__score small {
  display: block;
  color: var(--muted);
}

.dashboard__stat span,
.dashboard__score span {
  font-size: 0.7rem;
}

.dashboard__score small {
  margin-top: 2px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #415954;
}

.dashboard__stat strong {
  display: block;
  margin-top: 4px;
  font-size: 1.1rem;
  color: #2d4c43;
}

.dashboard__panel {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 13px;
}

.dashboard__score strong {
  display: block;
  margin-top: 8px;
  font-size: 2.82rem;
  line-height: 1;
  color: #24473d;
}

.dashboard__bars {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  width: 136px;
  height: 114px;
}

.dashboard__bar {
  width: 22px;
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, #b1df68, #56ab5f);
}

.dashboard__bar--1 {
  height: 44px;
}

.dashboard__bar--2 {
  height: 62px;
}

.dashboard__bar--3 {
  height: 80px;
}

.dashboard__bar--4 {
  height: 101px;
}

.whatsapp-card {
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: min(325px, 94%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 16px 30px rgba(13, 80, 87, 0.14), inset 0 0 0 1px rgba(255,255,255,0.7);
  animation: floatUpDown 5.5s ease-in-out infinite reverse;
}

.whatsapp-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: linear-gradient(180deg, #28cf63, #21be57);
  color: #fff;
  font-weight: 800;
}

.whatsapp-card__title {
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.whatsapp-card__menu {
  font-size: 1.2rem;
  line-height: 1;
  opacity: 0.9;
}

.whatsapp-card__body {
  padding: 18px 16px 10px;
}

.whatsapp-card__body h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
  line-height: 1.2;
  color: #2a3a35;
}

.whatsapp-card__body p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
  color: #485b57;
  max-width: 26ch;
}

.whatsapp-card__actions {
  display: flex;
  gap: 8px;
  padding: 14px 16px 16px;
}

.whatsapp-card__button {
  flex: 1;
  min-height: 46px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.15;
  cursor: pointer;
}

.whatsapp-card__button--ghost {
  color: #25d366;
  background: #fff;
  border-color: #25d366;
}

.whatsapp-card__button--solid {
  color: #fff;
  background: #25d366;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: -29px clamp(10px, 3vw, 46px) 0;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(214, 232, 228, 0.95);
  border: 1px solid rgba(210, 228, 223, 0.96);
  box-shadow: 0 12px 22px rgba(18, 86, 90, 0.12);
}

.stats__item {
  padding: 17px 14px 14px;
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stats__item strong {
  display: block;
  font-size: 1.42rem;
  color: #244840;
}

.stats__item span {
  display: block;
  margin-top: 3px;
  font-size: 0.65rem;
  color: var(--muted);
}

.section {
  position: relative;
  padding: 32px clamp(12px, 2.8vw, 43px) 46px;
  overflow: hidden;
}

.section--light {
  background:
    linear-gradient(180deg, rgba(250, 252, 250, 0.98) 0%, rgba(246, 251, 248, 0.96) 48%, rgba(231, 246, 241, 0.74) 76%, rgba(209, 236, 230, 0.42) 90%, rgba(178, 224, 218, 0.18) 100%),
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.9), transparent 48%),
    var(--wallpaper) center 76% / cover no-repeat;
}

.section--wallpaper {
  background-position: center 56%;
}

.section--wallpaper::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(246, 250, 247, 0.12) 0%, rgba(231, 245, 238, 0.24) 10%, rgba(211, 239, 232, 0.38) 22%, rgba(167, 220, 214, 0.42) 34%, rgba(103, 183, 183, 0.38) 52%, rgba(54, 143, 145, 0.28) 100%),
    radial-gradient(circle at 50% 10%, rgba(250, 252, 248, 0.42), rgba(255, 255, 255, 0) 38%);
}

.section--plain {
  background: linear-gradient(180deg, rgba(247, 251, 248, 0.98), rgba(241, 248, 244, 0.96));
}

.section--cta {
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.76), transparent 52%),
    linear-gradient(180deg, rgba(248, 251, 248, 0.82), rgba(233, 245, 241, 0.8));
}

.section__heading,
.service-grid,
.solution-grid,
.process-grid,
.featured-grid,
.why-grid,
.about-block,
.testimonial-grid {
  position: relative;
  z-index: 1;
}

.section__heading {
  text-align: center;
  margin-bottom: 28px;
}

.section__heading--tight {
  margin-bottom: 18px;
}

.section__heading h2 {
  font-size: 2.53rem;
  line-height: 1;
}

.section__heading p {
  max-width: 560px;
  margin: 7px auto 0;
  font-size: 1.34rem;
  line-height: 1.6;
  color: var(--muted);
}

.service-grid,
.solution-grid,
.featured-grid,
.why-grid,
.testimonial-grid {
  display: grid;
  gap: 17px;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.solution-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.solution-card,
.featured-card,
.why-card,
.testimonial-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card:hover,
.solution-card:hover,
.featured-card:hover,
.why-card:hover,
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(15, 79, 84, 0.2);
}

.service-card,
.solution-card {
  border-radius: 12px;
  padding: 20px 18px 24px;
}

.solution-card {
  min-height: 328px;
}

.service-card h3,
.solution-card h3,
.featured-card__body h3,
.why-card h3 {
  margin: 0 0 8px;
  color: #273f3a;
}

.service-card h3,
.solution-card h3 {
  font-size: 1.41rem;
  line-height: 1.28;
}

.service-card p,
.solution-card p {
  margin: 0 0 12px;
  min-height: 60px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
}

.service-card a,
.solution-card a {
  color: #2f5349;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 800;
}

.service-card a::after,
.solution-card a::after {
  content: " ->";
}

.solution-icon {
  position: relative;
  width: 100%;
  height: 116px;
  margin-bottom: 14px;
}

.solution-icon--image {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.solution-icon--image img {
  display: block;
  max-width: 104px;
  max-height: 104px;
  object-fit: contain;
}

.solution-badge {
  position: absolute;
  left: 2px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(180deg, #c8eb7e, #6cba5f);
}

.solution-screen,
.workflow-screen {
  position: absolute;
  left: 18px;
  top: 6px;
  width: 36px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid #5cad63;
  background: linear-gradient(180deg, rgba(236, 248, 226, 0.98), rgba(213, 239, 190, 0.82));
}

.solution-screen::before,
.workflow-screen::before {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: 5px;
  height: 2px;
  border-radius: 999px;
  background: rgba(42, 143, 120, 0.45);
}

.solution-line {
  position: absolute;
  left: 26px;
  height: 4px;
  border-radius: 999px;
  background: #2e8f78;
}

.solution-line--a {
  top: 31px;
  width: 12px;
}

.solution-line--b {
  top: 37px;
  width: 18px;
}

.solution-ring {
  position: absolute;
  right: 8px;
  top: 18px;
  width: 18px;
  height: 18px;
  border: 4px solid #2d8f79;
  border-radius: 50%;
}

.solution-ring::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -2px;
  width: 9px;
  height: 4px;
  border-radius: 999px;
  background: #2d8f79;
  transform: rotate(40deg);
}

.chat-orb {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(180deg, #c7eb7d, #6abb5e);
}

.chat-orb--one {
  left: 18px;
  top: 8px;
}

.chat-orb--two {
  left: 34px;
  top: 12px;
  width: 18px;
  height: 18px;
  background: linear-gradient(180deg, #7bcc63, #2d8f79);
}

.chat-bubble-big {
  position: absolute;
  left: 50px;
  top: 11px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0 50%, rgba(80, 166, 133, 0.98) 50% 100%);
}

.chat-tail {
  position: absolute;
  left: 46px;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
}

.sales-dot {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(180deg, #b7e26a, #60b160);
}

.sales-ring {
  position: absolute;
  border: 3px solid #2f8f79;
  border-radius: 50%;
}

.sales-ring--one {
  right: 18px;
  top: 18px;
  width: 16px;
  height: 16px;
}

.sales-ring--two {
  right: 4px;
  top: 29px;
  width: 12px;
  height: 12px;
}

.support-chip {
  position: absolute;
  right: 8px;
  top: 14px;
  width: 18px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #bce67a, #75bf63);
}

.support-ring {
  position: absolute;
  right: 12px;
  top: 27px;
  width: 16px;
  height: 16px;
  border: 4px solid #2d8f79;
  border-radius: 50%;
}

.analytics-core {
  position: absolute;
  left: 34px;
  top: 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(180deg, #c8eb7d, #6abb5e);
}

.analytics-ring {
  position: absolute;
  left: 50px;
  top: 26px;
  width: 18px;
  height: 18px;
  border: 4px solid #2f8f79;
  border-radius: 50%;
}

.analytics-arm {
  position: absolute;
  height: 4px;
  border-radius: 999px;
  background: #2d8f79;
}

.analytics-arm--one {
  left: 24px;
  top: 13px;
  width: 9px;
  transform: rotate(-30deg);
}

.analytics-arm--two {
  left: 58px;
  top: 13px;
  width: 10px;
  transform: rotate(26deg);
}

.workflow-card {
  position: absolute;
  width: 15px;
  height: 11px;
  border-radius: 4px;
  background: linear-gradient(180deg, #c6ea7c, #77bf62);
}

.workflow-card--one {
  right: 8px;
  top: 12px;
}

.workflow-card--two {
  right: 8px;
  top: 28px;
  background: linear-gradient(180deg, #66bf72, #2d8f79);
}

.workflow-link {
  position: absolute;
  right: 18px;
  top: 22px;
  width: 9px;
  height: 9px;
  border-right: 3px solid #2d8f79;
  border-bottom: 3px solid #2d8f79;
  transform: rotate(-45deg);
}

.service-icon {
  position: relative;
  width: 74px;
  height: 58px;
  margin-bottom: 14px;
  transform: scale(1.02);
}

.service-icon--image {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.service-icon--image img {
  display: block;
  max-width: 72px;
  max-height: 72px;
  object-fit: contain;
}

.service-icon__badge {
  position: absolute;
  top: 2px;
  left: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(180deg, #c7eb7d, #69b85d);
  box-shadow: 22px 9px 0 -9px rgba(42, 143, 120, 0.45);
}

.service-icon--rocket .rocket-body {
  position: absolute;
  left: 18px;
  top: 16px;
  width: 28px;
  height: 18px;
  border-radius: 14px 14px 12px 12px;
  background: linear-gradient(135deg, #6ccf63, #1f8e7d);
  transform: rotate(-28deg);
}

.service-icon--rocket .rocket-body::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
}

.service-icon--rocket .rocket-fin {
  position: absolute;
  left: 12px;
  top: 26px;
  width: 14px;
  height: 10px;
  border-radius: 0 0 8px 8px;
  background: #2d8f79;
  transform: rotate(-28deg);
}

.service-icon--rocket .rocket-flame {
  position: absolute;
  left: 40px;
  top: 28px;
  width: 10px;
  height: 13px;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(180deg, #f6f4a0, #f1bf62);
  transform: rotate(-20deg);
}

.service-icon--bot .bot-head {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 30px;
  height: 22px;
  border-radius: 12px;
  background: linear-gradient(180deg, #3ca28a, #1f7668);
}

.service-icon--bot .bot-head::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 13px;
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: #74c862;
}

.bot-eye {
  position: absolute;
  top: 22px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

.bot-eye--left {
  left: 22px;
}

.bot-eye--right {
  left: 32px;
}

.bot-mouth {
  position: absolute;
  left: 24px;
  top: 30px;
  width: 12px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
}

.bot-base {
  position: absolute;
  left: 18px;
  bottom: 9px;
  width: 24px;
  height: 4px;
  border-radius: 999px;
  background: #2e8f78;
}

.service-icon--software-panel .panel-screen,
.service-icon--web-card .web-window {
  position: absolute;
  left: 10px;
  top: 12px;
  width: 40px;
  height: 28px;
  border-radius: 7px;
}

.service-icon--software-panel .panel-side {
  position: absolute;
  right: 10px;
  top: 14px;
  width: 12px;
  height: 24px;
  border-radius: 4px;
  background: linear-gradient(180deg, #d8f1a0, #90cb68);
  box-shadow: -4px 0 0 rgba(36, 139, 119, 0.2);
}

.panel-line,
.web-row {
  position: absolute;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.service-icon--software-panel .panel-screen {
  background: linear-gradient(180deg, #8fd463, #2f8f79);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.18);
}

.panel-line--one {
  left: 17px;
  top: 20px;
  width: 12px;
}

.panel-line--two {
  left: 17px;
  top: 27px;
  width: 16px;
}

.service-icon--web-card .web-header {
  position: absolute;
  left: 10px;
  top: 12px;
  width: 40px;
  height: 7px;
  border-radius: 7px 7px 0 0;
  background: rgba(255, 255, 255, 0.34);
}

.service-icon--web-card .web-window {
  background: linear-gradient(180deg, #7cc862, #2b8d79);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.18);
}

.web-row--one {
  left: 16px;
  top: 24px;
  width: 15px;
}

.web-row--two {
  left: 16px;
  top: 31px;
  width: 22px;
}

.service-icon--web-card .web-window::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.78);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.process-step {
  text-align: center;
  padding: 8px 4px;
}

.process-step__icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: linear-gradient(180deg, #8fcd67, #58a95f);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  box-shadow: 0 8px 14px rgba(75, 157, 92, 0.22);
}

.process-step h3 {
  margin: 0 0 6px;
  font-size: 1.29rem;
}

.process-step p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--muted);
}

.featured-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.featured-card {
  overflow: hidden;
  border-radius: 12px;
}

.featured-thumb {
  position: relative;
  height: 170px;
}

.featured-thumb--image {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(239, 248, 244, 0.94), rgba(226, 242, 237, 0.96));
}

.featured-thumb--image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  image-rendering: auto;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.featured-card:nth-child(1) .featured-thumb--image img {
  object-position: center 46%;
}

.featured-card:nth-child(2) .featured-thumb--image img {
  object-position: center 34%;
}

.featured-card:nth-child(3) .featured-thumb--image img {
  object-position: center 58%;
}

@media (max-width: 980px) {
  .featured-card:nth-child(1) .featured-thumb--image img {
    object-position: center 42%;
  }

  .featured-card:nth-child(2) .featured-thumb--image img {
    object-position: center 32%;
  }

  .featured-card:nth-child(3) .featured-thumb--image img {
    object-position: center 52%;
  }
}

@media (max-width: 680px) {
  .featured-card:nth-child(1) .featured-thumb--image img {
    object-position: center 40%;
  }

  .featured-card:nth-child(2) .featured-thumb--image img {
    object-position: center 30%;
  }

  .featured-card:nth-child(3) .featured-thumb--image img {
    object-position: center 48%;
  }
}

.featured-thumb--office {
  background: linear-gradient(135deg, #d9efe2, #98c3cb);
}

.featured-thumb--phone {
  background: linear-gradient(135deg, #d8f1d7, #a9d7cb);
}

.featured-thumb--chart {
  background: linear-gradient(135deg, #bdd9e9, #2a5566);
}

.thumb-office,
.thumb-phone,
.thumb-chart,
.meeting-scene {
  position: absolute;
  inset: 0;
}

.thumb-office__window {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38%;
  height: 46%;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(182, 218, 226, 0.66));
}

.thumb-office__desk {
  position: absolute;
  bottom: 18px;
  width: 42%;
  height: 14px;
  border-radius: 999px;
  background: #6f4b30;
}

.thumb-office__desk--left {
  left: 14%;
}

.thumb-office__desk--right {
  right: 10%;
}

.thumb-office__person {
  position: absolute;
  bottom: 28px;
  width: 18px;
  height: 40px;
  border-radius: 10px 10px 6px 6px;
  background: linear-gradient(180deg, #253645, #121a22);
}

.thumb-office__person::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 1px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #f0d9bf;
}

.thumb-office__person--one {
  left: 28%;
}

.thumb-office__person--two {
  right: 24%;
}

.thumb-phone__device {
  position: absolute;
  left: 38%;
  top: 16px;
  width: 72px;
  height: 114px;
  border-radius: 18px;
  background: #1e2329;
  transform: rotate(12deg);
  box-shadow: 0 12px 18px rgba(0, 0, 0, 0.18);
}

.thumb-phone__screen {
  position: absolute;
  left: calc(38% + 7px);
  top: 24px;
  width: 58px;
  height: 98px;
  border-radius: 14px;
  background: linear-gradient(180deg, #27cc63, #0f8f48);
  transform: rotate(12deg);
}

.thumb-phone__bubble {
  position: absolute;
  width: 26px;
  height: 18px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
}

.thumb-phone__bubble--one {
  left: 24%;
  top: 38px;
}

.thumb-phone__bubble--two {
  right: 24%;
  bottom: 32px;
}

.thumb-chart__grid {
  position: absolute;
  inset: 20px;
  border-radius: 10px;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 22px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 28px);
}

.thumb-chart__line {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 44px;
  height: 2px;
  background: linear-gradient(90deg, #5be37e, #8be68b);
  transform: skewY(-18deg);
}

.thumb-chart__bar {
  position: absolute;
  bottom: 26px;
  width: 14px;
  border-radius: 6px 6px 3px 3px;
  background: linear-gradient(180deg, #9fde69, #4dad60);
}

.thumb-chart__bar--1 {
  right: 88px;
  height: 24px;
}

.thumb-chart__bar--2 {
  right: 66px;
  height: 38px;
}

.thumb-chart__bar--3 {
  right: 44px;
  height: 54px;
}

.thumb-chart__bar--4 {
  right: 22px;
  height: 72px;
}

.featured-card__body {
  padding: 18px 16px 20px;
}

.featured-card__body h3 {
  font-size: 1.38rem;
  line-height: 1.35;
}

.featured-card__body p {
  margin: 0 0 12px;
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--muted);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag-row span {
  padding: 4px 8px;
  border-radius: 999px;
  background: #eef7ef;
  color: #4f7f62;
  font-size: 0.56rem;
  font-weight: 800;
}

.why-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.why-card {
  border-radius: 14px;
  padding: 22px 18px 24px;
}

.why-card__icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: linear-gradient(180deg, #edf8e4, #dcefcf);
  color: #67a053;
  font-size: 1rem;
  font-weight: 800;
}

.why-card p {
  margin: 0;
  font-size: 0.99rem;
  line-height: 1.6;
  color: var(--muted);
}

.why-card h3 {
  font-size: 1.38rem;
  line-height: 1.3;
}

.about-block {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: center;
}

.about-block__content h2 {
  font-size: 2rem;
}

.about-block__content h3 {
  margin: 6px 0 14px;
  font-size: 1rem;
  color: #335b4b;
}

.about-block__content p {
  margin: 0 0 12px;
  font-size: 0.73rem;
  line-height: 1.75;
  color: var(--muted);
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin-top: 18px;
}

.about-points span {
  position: relative;
  padding-left: 18px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #38524a;
}

.about-points span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, #8fcd67, #58a95f);
}

.about-block__visual {
  min-height: 280px;
}

.about-photo-card {
  min-height: 280px;
  max-height: 420px;
  border-radius: 18px;
  border: 1px solid rgba(184, 222, 214, 0.95);
  box-shadow: 0 12px 28px rgba(14, 70, 77, 0.16);
  overflow: hidden;
}

.about-photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  max-height: 420px;
  object-fit: cover;
  object-position: center;
  image-rendering: auto;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  border-radius: 12px;
  padding: 18px;
}

.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.testimonial-card__header strong {
  display: block;
  font-size: 1.08rem;
}

.testimonial-card__header small {
  display: block;
  margin-top: 2px;
  font-size: 0.87rem;
  color: var(--muted);
}

.avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
}

.avatar--warm {
  background: linear-gradient(180deg, #f0d9bf, #d4a977);
}

.avatar--blue {
  background: linear-gradient(180deg, #c8daf7, #7ca7e8);
}

.avatar--dark {
  background: linear-gradient(180deg, #b5c1d7, #5a708f);
}

.testimonial-card__stars {
  margin-bottom: 8px;
  color: #ffbf34;
  font-size: 1.08rem;
  letter-spacing: 0.1em;
}

.testimonial-card p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--muted);
}

.footer {
  position: relative;
  overflow: hidden;
}

.footer--wallpaper {
  padding: 46px clamp(12px, 3vw, 50px) 32px;
  background:
    radial-gradient(circle at 12% 16%, rgba(199, 245, 111, 0.38), transparent 22%),
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.12), transparent 16%),
    var(--wallpaper) center 72% / cover no-repeat;
}

.footer--wallpaper::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(186, 233, 96, 0.58) 0%, rgba(82, 185, 115, 0.36) 42%, rgba(21, 123, 128, 0.48) 100%),
    radial-gradient(120% 46% at 22% 72%, rgba(233, 251, 196, 0.62), transparent 45%);
}

.footer__grid,
.footer__bottom {
  position: relative;
  z-index: 1;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 0.7fr 1.25fr;
  gap: 34px;
}

.footer__brand-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.footer__brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  color: #79bb4f;
  font-size: 2rem;
  font-weight: 800;
}

.footer__brand-wordmark strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1.1;
  color: #123f35;
}

.footer__brand p,
.footer__column a,
.footer__contact a,
.footer__bottom p,
.footer__bottom a,
.footer__subscribe p {
  color: rgba(13, 59, 49, 0.88);
  text-decoration: none;
}

.footer__brand p {
  max-width: 260px;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
}

.footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer__socials a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(192, 233, 153, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.footer-social-glyph {
  color: #1f6b43;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.footer-social-glyph--instagram,
.footer-social-glyph--briefcase,
.footer-social-glyph--camera {
  position: relative;
}

.footer-social-glyph--instagram {
  width: 14px;
  height: 14px;
  border: 2px solid #1f6b43;
  border-radius: 4px;
}

.footer-social-glyph--instagram::before,
.footer-social-glyph--instagram::after,
.footer-social-glyph--briefcase::before,
.footer-social-glyph--briefcase::after,
.footer-social-glyph--camera::before,
.footer-social-glyph--camera::after {
  content: "";
  position: absolute;
}

.footer-social-glyph--instagram::before {
  left: 3px;
  top: 3px;
  width: 4px;
  height: 4px;
  border: 1.5px solid #1f6b43;
  border-radius: 50%;
}

.footer-social-glyph--instagram::after {
  right: 1px;
  top: 1px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #1f6b43;
}

.footer-social-glyph--briefcase {
  width: 16px;
  height: 11px;
  border-radius: 2px;
  background: #1f6b43;
}

.footer-social-glyph--briefcase::before {
  left: 4px;
  top: -3px;
  width: 8px;
  height: 4px;
  border: 2px solid #1f6b43;
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
}

.footer-social-glyph--briefcase::after {
  left: 0;
  right: 0;
  top: 4px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.8);
}

.footer-social-glyph--camera {
  width: 16px;
  height: 10px;
  border-radius: 3px;
  background: #1f6b43;
}

.footer-social-glyph--camera::before {
  left: 5px;
  top: 2px;
  width: 4px;
  height: 4px;
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
}

.footer-social-glyph--camera::after {
  left: 2px;
  top: -2px;
  width: 5px;
  height: 3px;
  border-radius: 2px 2px 0 0;
  background: #1f6b43;
}

.footer__column h3,
.footer__contact h3,
.footer__subscribe h4 {
  margin: 0 0 22px;
  font-size: 1rem;
  color: #123f35;
}

.footer__column a {
  display: block;
  margin-bottom: 14px;
  font-size: 1.05rem;
}

.footer__contact > a {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.footer__contact > a span {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(193, 232, 202, 0.58);
  flex: 0 0 22px;
}

.footer__contact > a:nth-of-type(1) span::before,
.footer__contact > a:nth-of-type(2) span::before,
.footer__contact > a:nth-of-type(3) span::before,
.footer__contact > a:nth-of-type(4) span::before {
  content: "";
  position: absolute;
}

.footer__contact > a:nth-of-type(1) span::before {
  left: 6px;
  top: 5px;
  width: 8px;
  height: 8px;
  border: 2px solid #1f6b43;
  border-radius: 50%;
}

.footer__contact > a:nth-of-type(1) span::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 5px;
  height: 2px;
  border-radius: 999px;
  background: #1f6b43;
  transform: rotate(38deg);
}

.footer__contact > a:nth-of-type(2) span::before {
  left: 5px;
  top: 6px;
  width: 12px;
  height: 9px;
  border: 2px solid #1f6b43;
  border-radius: 2px;
  background: transparent;
}

.footer__contact > a:nth-of-type(2) span::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  width: 10px;
  height: 6px;
  border-left: 2px solid #1f6b43;
  border-bottom: 2px solid #1f6b43;
  transform: skewY(-28deg) rotate(-45deg);
}

.footer__contact > a:nth-of-type(3) span::before {
  left: 8px;
  top: 4px;
  width: 6px;
  height: 10px;
  border-radius: 6px 6px 6px 0;
  background: #1f6b43;
  transform: rotate(45deg);
}

.footer__contact > a:nth-of-type(4) span::before {
  left: 5px;
  top: 5px;
  width: 12px;
  height: 12px;
  border: 2px solid #1f6b43;
  border-radius: 50%;
}

.footer__contact > a:nth-of-type(4) span::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 7px;
  width: 2px;
  height: 5px;
  background: #1f6b43;
  transform-origin: bottom center;
}

.footer__subscribe {
  margin-top: 34px;
}

.footer__subscribe h4 {
  margin-bottom: 10px;
}

.footer__subscribe p {
  margin: 0 0 16px;
  font-size: 0.85rem;
}

.subscribe-form {
  display: flex;
  gap: 10px;
}

.subscribe-form input {
  flex: 1;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(221, 241, 232, 0.5);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.14);
  color: #123f35;
}

.subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.85);
}

.subscribe-form button {
  min-width: 118px;
  min-height: 44px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  color: #123f35;
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(228, 245, 238, 0.35);
}

.footer__bottom p,
.footer__bottom a {
  margin: 0;
  font-size: 0.86rem;
}

.footer__policies {
  display: flex;
  gap: 30px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 460ms ease, transform 460ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1366px) {
  .topbar__inner {
    min-height: 106px;
    gap: 34px;
    padding-left: clamp(26px, 4vw, 58px);
    padding-right: clamp(26px, 4vw, 58px);
  }

  .brand {
    min-width: 300px;
  }

  .brand__logo {
    height: 104px;
  }

  .main-nav {
    gap: 30px;
  }

  .main-nav a {
    font-size: 0.94rem;
  }

  .topbar__actions {
    padding: 8px 12px 8px 16px;
  }

  .hero__inner {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 28px;
    min-height: 560px;
    padding-top: 40px;
    padding-bottom: 116px;
    padding-left: clamp(28px, 4vw, 60px);
    padding-right: clamp(28px, 4vw, 60px);
  }

  .hero__content {
    max-width: 640px;
    align-self: center;
  }

  .hero__content h1 {
    font-size: clamp(4.8rem, 5.6vw, 6.2rem);
  }

  .hero__content p {
    max-width: 530px;
    font-size: 1.12rem;
  }

  .hero__visual {
    min-height: 398px;
  }

  .dashboard {
    width: min(100%, 590px);
    top: -4px;
  }

  .stats {
    margin-left: clamp(28px, 4vw, 60px);
    margin-right: clamp(28px, 4vw, 60px);
  }

  .section {
    padding: 34px clamp(28px, 4vw, 60px) 46px;
  }

  .section__heading {
    margin-bottom: 24px;
  }

  .section__heading h2,
  .about-block__content h2 {
    font-size: clamp(2.4rem, 2vw, 2.9rem);
  }

  .service-grid,
  .solution-grid,
  .featured-grid,
  .why-grid,
  .testimonial-grid {
    gap: 22px;
  }

  .service-card,
  .solution-card {
    padding: 20px 22px 22px;
  }

  .service-card h3,
  .solution-card h3,
  .featured-card__body h3,
  .why-card h3 {
    font-size: 1.06rem;
  }

  .service-card p,
  .solution-card p {
    font-size: 0.76rem;
  }

  .solution-card {
    min-height: 324px;
  }

  .solution-icon {
    height: 126px;
  }

  .solution-icon--image img {
    max-width: 112px;
    max-height: 112px;
  }

  .featured-thumb {
    height: 182px;
  }

  .featured-card__body {
    padding: 18px 18px 20px;
  }

  .about-block {
    grid-template-columns: 1.02fr 0.98fr;
    gap: 34px;
  }

  .about-photo-card,
  .about-photo-card img {
    min-height: 320px;
    max-height: 400px;
  }

  .footer--wallpaper {
    padding: 46px clamp(28px, 4vw, 60px) 30px;
  }
}

@media (min-width: 1600px) {
  .topbar__inner,
  .hero__inner,
  .section,
  .footer--wallpaper {
    padding-left: clamp(38px, 5vw, 88px);
    padding-right: clamp(38px, 5vw, 88px);
  }

  .hero__content h1 {
    font-size: clamp(5.5rem, 5.8vw, 6.9rem);
  }

  .dashboard {
    width: min(100%, 640px);
  }
}

@media (max-width: 1180px) {
  .topbar__inner {
    grid-template-columns: minmax(180px, auto) 1fr;
    gap: 18px 20px;
  }

  .topbar__actions {
    grid-column: 1 / -1;
    justify-self: end;
  }

  .main-nav {
    justify-content: flex-end;
    gap: 18px;
    flex-wrap: wrap;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-bottom: 88px;
  }

  .hero__content {
    max-width: 620px;
  }

  .hero__visual {
    min-height: 360px;
    max-width: 700px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .dashboard {
    right: 0;
    left: auto;
    width: min(100%, 540px);
  }

  .stats {
    margin-top: -20px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-grid,
  .featured-grid,
  .why-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer__grid {
    grid-template-columns: 1.1fr 0.9fr 0.9fr;
  }

  .footer__subscribe {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .topbar {
    position: relative;
  }

  .topbar__inner,
  .hero__inner,
  .about-block,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .topbar__inner {
    gap: 16px;
    padding-top: 12px;
    padding-bottom: 14px;
  }

  .brand {
    min-width: 0;
    justify-self: center;
  }

  .brand__logo {
    height: 80px;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
    padding: 4px 0;
  }

  .topbar__actions {
    justify-self: center;
  }

  .hero {
    background-position: center 30%;
  }

  .hero__inner {
    min-height: auto;
    padding-top: 22px;
    padding-bottom: 86px;
  }

  .hero__content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
  }

  .hero__content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__buttons {
    justify-content: center;
  }

  .hero__visual {
    min-height: 336px;
    max-width: 620px;
    margin: 0 auto;
  }

  .dashboard {
    width: min(100%, 500px);
  }

  .stats {
    margin-left: 16px;
    margin-right: 16px;
  }

  .service-grid,
  .solution-grid,
  .featured-grid,
  .why-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-block {
    gap: 20px;
  }

  .about-block__content {
    text-align: center;
  }

  .about-points {
    justify-content: center;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 680px) {
  .topbar__inner,
  .hero__inner,
  .section,
  .footer--wallpaper {
    padding-left: 12px;
    padding-right: 12px;
  }

  .topbar__inner {
    grid-template-columns: 1fr auto;
    align-items: center;
    min-height: auto;
    gap: 10px 12px;
    padding-top: 10px;
    padding-bottom: 12px;
  }

  .brand {
    justify-self: start;
  }

  .brand__logo {
    height: 64px;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .topbar__menu {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    padding: 16px 14px 14px;
    border: 1px solid rgba(184, 223, 165, 0.95);
    border-radius: 20px;
    background: rgba(248, 251, 246, 0.98);
    box-shadow: 0 18px 36px rgba(12, 71, 74, 0.12);
  }

  .topbar.topbar--open .topbar__menu {
    display: grid;
    gap: 14px;
  }

  .topbar.topbar--open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .topbar.topbar--open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .topbar.topbar--open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .main-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    padding: 0;
  }

  .main-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 2px;
    border-bottom: 1px solid rgba(216, 232, 223, 0.86);
    font-size: 0.86rem;
  }

  .topbar__actions {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    padding: 12px 10px;
    border: 1px solid rgba(184, 223, 165, 0.95);
    border-radius: 999px;
  }

  .phone-pill {
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.76rem;
  }

  .social-chips a {
    width: 30px;
    height: 30px;
  }

  .hero__content h1 {
    font-size: clamp(2.5rem, 12vw, 3.35rem);
    line-height: 0.96;
  }

  .hero__content p {
    font-size: 0.92rem;
    max-width: 34ch;
  }

  .stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-left: 12px;
    margin-right: 12px;
    margin-top: -10px;
  }

  .featured-grid,
  .why-grid,
  .testimonial-grid,
  .about-points {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .section {
    padding-top: 22px;
    padding-bottom: 28px;
  }

  .section__heading {
    margin-bottom: 18px;
  }

  .section__heading h2,
  .about-block__content h2 {
    font-size: 1.95rem;
    line-height: 1.08;
  }

  .hero__inner {
    gap: 20px;
    padding-top: 16px;
    padding-bottom: 56px;
  }

  .hero__visual {
    min-height: 280px;
    max-width: 312px;
  }

  .search-card {
    left: 12px;
    top: 58px;
    width: 56px;
    height: 56px;
  }

  .dashboard {
    position: relative;
    top: 0;
    right: auto;
    width: min(100%, 276px);
    max-width: none;
    margin: 0 0 0 auto;
    padding: 7px 7px 9px;
    border-radius: 14px;
  }

  .dashboard__header {
    margin-bottom: 6px;
  }

  .dashboard__badge,
  .dashboard__search {
    min-height: 20px;
    padding: 0 8px;
    font-size: 0.59rem;
  }

  .dashboard__stats {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-bottom: 6px;
  }

  .dashboard__stat {
    padding: 7px 8px;
  }

  .dashboard__stat strong {
    font-size: 0.86rem;
  }

  .dashboard__panel {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 7px 8px;
  }

  .dashboard__bars {
    width: 100%;
    height: 82px;
    justify-content: flex-end;
    gap: 5px;
  }

  .dashboard__bar {
    width: 14px;
  }

  .dashboard__score strong {
    font-size: 1.76rem;
  }

  .service-card,
  .solution-card,
  .featured-card,
  .why-card,
  .testimonial-card {
    border-radius: 14px;
  }

  .service-card,
  .solution-card {
    padding: 16px 14px 18px;
  }

  .stats__item {
    padding: 20px 10px;
  }

  .stats__item strong {
    font-size: 1.1rem;
  }

  .stats__item span {
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .whatsapp-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 256px);
    margin: 10px 0 0 auto;
  }

  .whatsapp-card__header {
    padding: 8px 10px;
  }

  .whatsapp-card__title {
    font-size: 0.8rem;
  }

  .whatsapp-card__menu {
    font-size: 1rem;
  }

  .whatsapp-card__body {
    padding: 10px 10px 8px;
  }

  .whatsapp-card__body h3 {
    margin-bottom: 8px;
    font-size: 0.74rem;
  }

  .whatsapp-card__body p {
    font-size: 0.62rem;
    line-height: 1.35;
  }

  .whatsapp-card__actions {
    gap: 6px;
    padding: 10px;
  }

  .whatsapp-card__button {
    min-height: 32px;
    padding: 0 8px;
    font-size: 0.54rem;
  }

  .solution-card {
    min-height: auto;
  }

  .service-card h3,
  .solution-card h3 {
    font-size: 1.05rem;
  }

  .service-card p,
  .solution-card p {
    min-height: 0;
    font-size: 0.64rem;
    line-height: 1.5;
  }

  .service-card a,
  .solution-card a {
    font-size: 0.68rem;
  }

  .solution-icon {
    height: 104px;
    margin-bottom: 10px;
  }

  .featured-thumb {
    height: 180px;
  }

  .featured-card__body {
    padding: 16px;
  }

  .tag-row {
    gap: 8px;
  }

  .about-block {
    gap: 18px;
  }

  .about-block__content {
    text-align: left;
  }

  .about-points {
    gap: 10px;
  }

  .about-photo-card,
  .about-photo-card img {
    min-height: 240px;
    max-height: none;
  }

  .why-card,
  .testimonial-card {
    padding: 16px;
  }

  .section--cta {
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }

  .topbar__actions,
  .subscribe-form,
  .footer__policies {
    flex-direction: column;
  }

  .footer__grid {
    gap: 16px;
  }

  .footer__brand,
  .footer__column,
  .footer__contact {
    padding: 16px 14px;
    border: 1px solid rgba(228, 245, 238, 0.28);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
  }

  .footer__brand {
    text-align: center;
  }

  .footer__brand-top {
    justify-content: center;
    margin-bottom: 14px;
  }

  .footer__brand p {
    max-width: 100%;
    font-size: 0.82rem;
    line-height: 1.7;
  }

  .footer__socials {
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
  }

  .footer__socials a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .footer__column h3,
  .footer__contact h3,
  .footer__subscribe h4 {
    margin-bottom: 12px;
    font-size: 1rem;
  }

  .footer__column a {
    margin-bottom: 10px;
    font-size: 0.84rem;
  }

  .footer__contact > a {
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .footer__contact > a span {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  .footer__subscribe {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(228, 245, 238, 0.24);
  }

  .footer__subscribe p {
    font-size: 0.8rem;
    line-height: 1.55;
  }

  .subscribe-form {
    gap: 10px;
  }

  .subscribe-form input,
  .subscribe-form button {
    min-height: 46px;
    width: 100%;
    border-radius: 12px;
  }

  .footer__bottom {
    margin-top: 22px;
    padding-top: 18px;
    gap: 12px;
  }

  .footer__bottom p,
  .footer__bottom a {
    font-size: 0.78rem;
  }

  .footer__policies {
    gap: 10px;
  }
}

@media (max-width: 460px) {
  .brand__logo {
    height: 58px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .main-nav a {
    font-size: 0.8rem;
  }

  .footer--wallpaper {
    padding-top: 24px;
    padding-bottom: 18px;
  }

  .footer__brand,
  .footer__column,
  .footer__contact {
    padding: 14px 12px;
    border-radius: 16px;
  }

  .footer__brand-mark {
    width: 38px;
    height: 38px;
    font-size: 1.7rem;
  }

  .footer__brand-wordmark strong {
    font-size: 1.22rem;
  }

  .footer__brand p,
  .footer__column a,
  .footer__contact > a,
  .footer__subscribe p {
    font-size: 0.76rem;
  }

  .footer__socials a {
    width: 36px;
    height: 36px;
  }

  .topbar__actions {
    gap: 6px;
  }

  .phone-pill {
    width: 100%;
    justify-content: center;
  }

  .social-chips {
    width: 100%;
    justify-content: center;
  }

  .hero__content h1 {
    font-size: 2.28rem;
  }

  .hero__content p {
    font-size: 1.05rem;
  }

  .hero__buttons {
    gap: 10px;
  }

  .button {
    width: 100%;
    justify-content: center;
  }

  .hero__visual {
    min-height: 330px;
    max-width: 280px;
  }

  .service-grid,
  .solution-grid {
    gap: 10px;
  }

  .service-card,
  .solution-card {
    padding: 14px 12px 16px;
  }

  .service-card h3,
  .solution-card h3 {
    font-size: 0.82rem;
  }

  .service-card p,
  .solution-card p {
    font-size: 0.6rem;
  }

  .process-grid {
    gap: 10px;
  }

  .search-card {
    left: 8px;
    top: 40px;
    width: 46px;
    height: 46px;
  }

  .dashboard__score strong {
    font-size: 1.56rem;
  }

  .dashboard {
    width: min(100%, 248px);
    padding: 6px 6px 8px;
  }

  .whatsapp-card {
    right: 2px;
    bottom: -6px;
    width: min(228px, 96%);
  }

  .whatsapp-card__header {
    padding: 8px 10px;
  }

  .whatsapp-card__title {
    font-size: 0.8rem;
  }

  .whatsapp-card__menu {
    font-size: 1rem;
  }

  .whatsapp-card__body {
    padding: 10px 10px 8px;
  }

  .whatsapp-card__body h3 {
    margin-bottom: 8px;
    font-size: 0.72rem;
  }

  .whatsapp-card__body p {
    font-size: 0.6rem;
    line-height: 1.35;
  }

  .whatsapp-card__actions {
    gap: 6px;
    padding: 10px;
  }

  .whatsapp-card__button {
    min-height: 32px;
    padding: 0 8px;
    font-size: 0.54rem;
  }

  .dashboard__badge,
  .dashboard__search {
    min-height: 18px;
    padding: 0 7px;
    font-size: 0.55rem;
  }

  .dashboard__stat,
  .dashboard__panel {
    border-radius: 12px;
  }

  .dashboard__bars {
    height: 72px;
    gap: 4px;
  }

  .dashboard__bar {
    width: 12px;
  }

  .dashboard__bar--1 {
    height: 30px;
  }

  .dashboard__bar--2 {
    height: 42px;
  }

  .dashboard__bar--3 {
    height: 56px;
  }

  .dashboard__bar--4 {
    height: 68px;
  }

  .stats__item {
    padding: 18px 8px;
  }

  .stats__item strong {
    font-size: 0.98rem;
  }

  .stats__item span {
    font-size: 0.6rem;
  }

  .featured-thumb {
    height: 160px;
  }
}
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, #dff3b3 0%, #88d6a8 38%, #2ca7a4 72%, #0f8ea0 100%);
}

#particles-js {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 18% 28%, rgba(255,255,255,0.30), transparent 22%),
    radial-gradient(circle at 70% 22%, rgba(255,255,255,0.15), transparent 18%),
    radial-gradient(circle at 45% 60%, rgba(255,255,255,0.10), transparent 20%);
}

.hero-section::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -30px;
  height: 260px;
  z-index: 2;
  background:
    radial-gradient(ellipse at 20% 70%, rgba(255,255,255,0.18), transparent 38%),
    radial-gradient(ellipse at 55% 85%, rgba(193,255,180,0.18), transparent 34%),
    radial-gradient(ellipse at 85% 80%, rgba(255,255,255,0.12), transparent 28%);
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 54px 20px 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-left {
  width: 48%;
}

.hero-left h1 {
  margin: 0 0 24px;
  font-size: 72px;
  line-height: 0.95;
  font-weight: 800;
  color: #1f3b31;
  letter-spacing: -2px;
}

.hero-left p {
  max-width: 680px;
  margin: 0 0 30px;
  font-size: 20px;
  line-height: 1.6;
  color: #36554a;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(180deg, #80d459 0%, #45ab44 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(67, 164, 79, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  background: #fff;
  color: #23382f;
  box-shadow: 0 12px 28px rgba(0,0,0,0.10);
}

.btn-secondary:hover {
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  font-size: 20px;
  font-weight: 600;
  color: #244137;
}

.hero-right {
  width: 52%;
  position: relative;
  min-height: 500px;
}

.dashboard-card {
  position: absolute;
  top: 14px;
  right: 10px;
  width: 760px;
  max-width: 100%;
  background: rgba(255,255,255,0.92);
  border-radius: 26px;
  padding: 22px;
  box-shadow: 0 24px 50px rgba(14, 58, 58, 0.16);
  backdrop-filter: blur(8px);
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.tag {
  display: inline-block;
  padding: 10px 18px;
  background: #eef2ef;
  border-radius: 999px;
  font-weight: 700;
  font-size: 18px;
  color: #2f4a40;
}

.search-btn {
  border: none;
  border-radius: 999px;
  background: #7dcf52;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 22px;
  cursor: pointer;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.metric-box,
.dashboard-bottom {
  border: 1px solid #d9e4dd;
  background: #fff;
  border-radius: 22px;
  padding: 22px;
}

.metric-box small,
.dashboard-bottom small {
  display: block;
  color: #5d756d;
  font-size: 16px;
  margin-bottom: 8px;
}

.metric-box h3 {
  margin: 0;
  font-size: 20px;
  color: #1f3b31;
}

.dashboard-bottom {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.dashboard-bottom h2 {
  margin: 8px 0 0;
  font-size: 76px;
  line-height: 1;
  color: #1f3b31;
}

.bars {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 150px;
}

.bars span {
  width: 34px;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg, #b6e05b 0%, #68bf58 100%);
}

.bars span:nth-child(1) { height: 50px; }
.bars span:nth-child(2) { height: 82px; }
.bars span:nth-child(3) { height: 114px; }
.bars span:nth-child(4) { height: 142px; }

.floating-icon {
  position: absolute;
  left: 40px;
  top: 220px;
  width: 110px;
  height: 110px;
  border-radius: 28px;
  background: rgba(255,255,255,0.88);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 54px;
  color: #66bd4f;
}

.chatbot-badge {
  position: absolute;
  top: 100px;
  right: -10px;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.16);
}

.whatsapp-card {
  position: absolute;
  right: 20px;
  bottom: 0;
  width: 430px;
  max-width: 100%;
  background: rgba(255,255,255,0.93);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 22px 46px rgba(8, 35, 35, 0.18);
  backdrop-filter: blur(8px);
}

.whatsapp-header {
  font-size: 18px;
  font-weight: 800;
  color: #46a948;
  margin-bottom: 12px;
}

.whatsapp-card p {
  margin: 0 0 14px;
  color: #2d4238;
  font-size: 17px;
}

.message-box {
  background: #f7f7f7;
  border: 1px solid #e8ece8;
  border-radius: 18px;
  padding: 16px;
  font-size: 16px;
  color: #43594f;
  margin-bottom: 14px;
}

.wa-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.wa-actions button {
  border: none;
  background: #f2f5f2;
  border-radius: 999px;
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 700;
  color: #2d4238;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .hero-left h1 {
    font-size: 58px;
  }

  .hero-left p {
    font-size: 19px;
  }

  .dashboard-card {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .hero-container {
    flex-direction: column;
    padding-top: 50px;
  }

  .hero-left,
  .hero-right {
    width: 100%;
  }

  .hero-right {
    min-height: 640px;
  }

  .hero-left h1 {
    font-size: 52px;
  }

  .hero-trust {
    font-size: 18px;
    gap: 16px;
  }

  .whatsapp-card {
    width: 380px;
  }
}

@media (max-width: 767px) {
  .hero-left h1 {
    font-size: 42px;
  }

  .hero-left p {
    font-size: 18px;
  }

  .btn {
    width: 100%;
    font-size: 18px;
    padding: 16px 20px;
  }

  .hero-right {
    min-height: 580px;
  }

  .floating-icon {
    width: 90px;
    height: 90px;
    font-size: 42px;
  }

  .dashboard-bottom h2 {
    font-size: 52px;
  }

  .bars span {
    width: 24px;
  }

  .whatsapp-card {
    width: 100%;
    right: 0;
  }
}
  
/* Chatbot Styles */
#chatbot-icon {
      z-index: 99999 !important;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 65px;
    background: linear-gradient(135deg, #82c95d, #4fa25f);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 10px 28px rgba(0,0,0,0.35);
    transition: transform 0.3s ease;
}
#chatbot-icon:hover {
    transform: translateY(-5px);
}
#chatbot-box {
      z-index: 99998 !important;
    width: 360px;
    position: fixed;
    bottom: 80px;
    right: 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 36px rgba(13, 80, 87, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
    display: none;
    z-index: 9999;
}
#chatHeader {
    background: linear-gradient(180deg, #8ddf68, #48a95a);
    color: #fff;
    padding: 12px;
    font-size: 1.1rem;
    text-align: center;
    font-weight: 700;
}
#chatBody {
    height: 330px;
    overflow-y: auto;
    padding: 12px;
}
.message {
    margin: 8px 0;
    font-size: 0.85rem;
}
.bot {
    font-weight: 600;
    color: #2b4f47;
}
.options button {
    margin: 6px 4px 0 0;
    padding: 8px 12px;
    border-radius: 25px;
    border: 1px solid rgba(98, 135, 122, 0.18);
    background: linear-gradient(180deg, #b1df68, #56ab5f);
    color: white;
    cursor: pointer;
    font-weight: 600;
}

/* Life Grid & Reviews Grid */
.life-grid, .reviews-grid {
    display: grid;
    gap: 1.4rem;
    margin-top: 2.5rem;
}
.life-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.reviews-grid {
    grid-template-columns: repeat(4, 1fr);
}
.life-card, .review-card {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 1.4rem 1.2rem;
    box-shadow: 0 14px 32px rgba(15, 79, 84, 0.08);
    border: 1px solid rgba(182, 221, 214, 0.96);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    text-align: center;
}
.life-card:hover, .review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(15, 79, 84, 0.2);
}
.life-card video, .life-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
}
.life-card h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #273f3a;
}
.review-logo {
    height: 32px;
    margin-bottom: 0.6rem;
}
.review-score {
    font-size: 2.4rem;
    font-weight: 800;
    color: #f57c00;
}
.review-stars {
    color: #fbc02d;
    margin: 0.3rem 0 0.6rem;
    font-size: 0.85rem;
}
.review-bar {
    height: 6px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin: 6px 0;
}
.review-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #ff9800, #f57c00);
}
.review-count {
    margin-top: 0.6rem;
    font-weight: 600;
    font-size: 0.85rem;
    color: #617a74;
}
.review-link {
    display: inline-block;
    margin-top: 0.6rem;
    font-weight: 800;
    font-size: 0.85rem;
    color: #4fa25f;
    text-decoration: none;
}
.review-custom-img {
    width: 100%;
    max-width: 140px;
    height: auto;
    margin: 10px auto;
    display: block;
    border-radius: 6px;
}
@media (max-width: 1200px) {
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .reviews-grid { grid-template-columns: 1fr; }
}


/* --- Styles from services.html --- */

        :root {
            --primary-color: #b1eb4d;
            --secondary-color: #876c98;
            --accent-gold: #3aa834;
            --gradient-start: #82d3419e;
            --gradient-middle: #94e95f;
            --gradient-end: #66c47c;
            --dark-bg: #1e293b;
            --light-bg: #ffffff;
            --font-primary: #212529;
            --font-secondary: #4c5a6b;
            --font-accent: #0e3505;
            --white: #ffffff;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
            --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
            --shadow-xl: 0 16px 48px rgba(0,0,0,0.2);
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        

        

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        


        #particles-js {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        

        nav.scrolled {
            padding: 0.7rem 0;
            background: rgba(255, 255, 255, 0.98);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img {
            height: 65px;
            border: 2px solid var(--dark-bg);
            border-radius: 45px;
            padding: 2px;
        }

        

        .nav-links a {
            color: var(--font-primary);
            font-weight: 600;
            font-size: 1rem;
            position: relative;
            text-decoration: none;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -8px;
            left: 50%;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-gold));
            transition: all var(--transition-base);
            transform: translateX(-50%);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--font-accent);
        }
        /* Right contact block */
.nav-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, #eaffd8, #c9f7b5);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Phone number */
.nav-phone {
    font-weight: 700;
    color: #0e3505;
    text-decoration: none;
    font-size: 0.85rem;
}

.nav-phone i {
    color: #15a041;
    margin-right: 6px;
}

/* Social icons row */
.nav-social {
    display: flex;
    gap: 10px;
}

.nav-social a {
    font-size: 1.1rem;
    color: #212529;
    transition: 0.3s ease;
}

.nav-social a:hover {
    color: #15a041;
    transform: translateY(-2px);
}


        .hamburger {
            display: none;
            cursor: pointer;
            color: var(--secondary-color);
            font-size: 1.7rem;
        }

        
        .section-title {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 1.2rem;
            color: var(--font-accent);
            position: relative;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 3.5rem;
            color: var(--font-secondary);
        }

        .glass {
            background: rgba(231, 234, 219, 0.85);
            backdrop-filter: blur(15px);
            border: 2px solid var(--dark-bg);
            border-radius: 18px;
            padding: 2.5rem;
            transition: all 0.5s ease;
            box-shadow: var(--shadow-sm);
            color: var(--font-primary);
            display: flex;
            flex-direction: column;
            height: 100%; /* Makes all cards stretch to same height */
        }

        .glass:hover {
            transform: translateY(-10px);
            border-color: var(--primary-color);
            box-shadow: 0 10px 30px rgba(244, 208, 63, 0.2);
        }

        .glass ul {
            list-style: none;
            padding-left: 0;
            margin-top: 1.5rem;
            flex-grow: 1; /* Allows list to expand and push content evenly */
        }

        .glass ul li {
            margin-bottom: 1.2rem;
        }

        .glass ul li a {
            color: var(--font-primary);
            transition: color 0.3s ease;
        }

        .glass ul li a:hover {
            color: var(--font-accent);
        }

        /* 2 Cards Per Row + Equal Height */
        .services-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
            align-items: stretch; /* Crucial: makes all cards same height */
        }

        @media (min-width: 768px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Increased Font Sizes for Main Content Only */
        main .glass h3 {
            font-size: 2rem !important;
            margin-bottom: 1.2rem;
        }

        main .glass ul li,
        main .glass ul li a {
            font-size: 1.2rem !important;
            line-height: 1.8;
            font-weight: 500;
        }
/* =======================
   REVIEWS SECTION
======================= */
/* =======================
   REVIEWS SECTION (UPDATED)
======================= */

.reviews-section {
    padding: 70px 0;
}

/* Force 4 cards in one row */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 in one line */
    gap: 1.4rem;
    margin-top: 2.5rem;
}

/* Smaller review card */
.review-card {
    background: rgba(255,255,255,0.92);
    border-radius: 14px;
    padding: 1.4rem 1.2rem;   /* reduced padding */
    box-shadow: var(--shadow-sm);
    transition: 0.35s ease;
    text-align: center;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

/* Smaller logos */
.review-logo {
    height: 32px;
    margin-bottom: 0.6rem;
}

/* Reduced score size */
.review-score {
    font-size: 2.4rem;
    font-weight: 800;
    color: #f57c00;
}

/* Stars */
.review-stars {
    color: #fbc02d;
    margin: 0.3rem 0 0.6rem;
    font-size: 0.85rem;
}

/* Progress bar */
.review-bar {
    height: 6px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin: 6px 0;
}

.review-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #ff9800, #f57c00);
}

/* Review count */
.review-count {
    margin-top: 0.6rem;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--font-secondary);
}

/* Link */
.review-link {
    display: inline-block;
    margin-top: 0.6rem;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--accent-gold);
    text-decoration: none;
}

/* Custom images smaller */
.review-custom-img {
    width: 100%;
    max-width: 140px;
    height: auto;
    margin: 10px auto;
    display: block;
    border-radius: 6px;
}

/* Responsive fallback */
@media (max-width: 1200px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 992px) {
    

    .nav-links.active {
        display: flex;
    }
}
.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}

.visitor-counter {
    font-weight: 500;
}

.visitor-counter span {
    font-weight: 700;
    color: #ff6be5;
    margin-left: 6px;
}

        

        


        .social-icons a {
            margin: 0 0.4rem;
            font-size: 1.4rem;
            color: var(--white);
            transition: color var(--transition-base);
        }

        .social-icons a:hover {
            color: var(--accent-gold);
        }

        /* Chatbot Styles */
        #chatbot-icon {
      z-index: 99999 !important;
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #457b9d, #3ed685);
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 20px;
            cursor: pointer;
            z-index: 9999;
            box-shadow: 0 10px 28px rgba(0,0,0,0.35);
            transition: 0.3s ease;
        }

        #chatbot-icon:hover {
            transform: translateY(-5px);
        }

        #chatbot-box {
      z-index: 99998 !important;
            width: 360px;
            position: fixed;
            bottom: 100px;
            right: 25px;
            border-radius: 16px;
            background: #ffffff !important;
            box-shadow: 0 10px 28px rgba(0,0,0,0.35);
            overflow: hidden;
            display: none;
            z-index: 9999;
        }

        #chatHeader {
            background: linear-gradient(135deg, #4dde7b, #c84ad6);
            color: #fff;
            padding: 12px;
            font-size: 1.1rem;
            text-align: center;
            font-weight: 700;
        }

        #chat

        .message {
            margin: 8px 0;
            font-size: 0.85rem;
        }

        .bot {
            font-weight: 600;
            color: #581759;
        }

        .options button {
            margin: 6px 4px 0 0;
            padding: 8px 12px;
            border-radius: 25px;
            border: none;
            background: linear-gradient(135deg, #44ea68, #ac43dd);
            color: white;
            cursor: pointer;
        }

        @media (max-width: 992px) {
            
            .hamburger { display: block; }
            .section-title { font-size: 2.5rem; }
        }
    

/* --- Styles from ai.html --- */

        :root {
            --primary-color: #b1eb4d;
            --secondary-color: #876c98;
            --accent-gold: #3aa834;
            --gradient-start: #82d3419e;
            --gradient-middle: #94e95f;
            --gradient-end: #66c47c;
            --dark-bg: #1e293b;
            --light-bg: #ffffff;
            --font-primary: #212529;
            --font-secondary: #4c5a6b;
            --font-accent: #0e3505;
            --white: #ffffff;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
            --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
            --shadow-xl: 0 16px 48px rgba(0,0,0,0.2);
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        

        

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        

        a { text-decoration: none; color: var(--font-primary); transition: color var(--transition-base); }

        #particles-js {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        

        nav.scrolled {
            padding: 0.7rem 0;
            background: rgba(255, 255, 255, 0.98);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img {
            height: 65px;
            border: 2px solid var(--dark-bg);
            border-radius: 45px;
            padding: 2px;
        }

        

        .nav-links a {
            color: var(--font-primary);
            font-weight: 600;
            font-size: 1rem;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -8px;
            left: 50%;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-gold));
            transition: all var(--transition-base);
            transform: translateX(-50%);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--font-accent);
        }

                /* Right contact block */
.nav-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, #eaffd8, #c9f7b5);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Phone number */
.nav-phone {
    font-weight: 700;
    color: #0e3505;
    text-decoration: none;
    font-size: 0.85rem;
}

.nav-phone i {
    color: #15a041;
    margin-right: 6px;
}

/* Social icons row */
.nav-social {
    display: flex;
    gap: 10px;
}

.nav-social a {
    font-size: 1.1rem;
    color: #212529;
    transition: 0.3s ease;
}

.nav-social a:hover {
    color: #15a041;
    transform: translateY(-2px);
}

        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.7rem;
        }

        .section-title {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 1.2rem;
            position: relative;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 3.5rem;
            color: var(--font-secondary);
        }

        .glass {
            background: rgba(231, 234, 219, 0.85);
            backdrop-filter: blur(15px);
            border: 2px solid var(--dark-bg);
            border-radius: 18px;
            padding: 2rem;
            transition: all 0.5s ease;
            box-shadow: var(--shadow-sm);
        }

        .glass:hover {
            transform: translateY(-10px);
            border-color: var(--primary-color);
            box-shadow: 0 10px 30px rgba(244, 208, 63, 0.2);
        }

        .ai-grid, .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.8rem;
        }

/* =======================
   REVIEWS SECTION
======================= */
/* =======================
   REVIEWS SECTION (UPDATED)
======================= */

.reviews-section {
    padding: 70px 0;
}

/* Force 4 cards in one row */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 in one line */
    gap: 1.4rem;
    margin-top: 2.5rem;
}

/* Smaller review card */
.review-card {
    background: rgba(255,255,255,0.92);
    border-radius: 14px;
    padding: 1.4rem 1.2rem;   /* reduced padding */
    box-shadow: var(--shadow-sm);
    transition: 0.35s ease;
    text-align: center;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

/* Smaller logos */
.review-logo {
    height: 32px;
    margin-bottom: 0.6rem;
}

/* Reduced score size */
.review-score {
    font-size: 2.4rem;
    font-weight: 800;
    color: #f57c00;
}

/* Stars */
.review-stars {
    color: #fbc02d;
    margin: 0.3rem 0 0.6rem;
    font-size: 0.85rem;
}

/* Progress bar */
.review-bar {
    height: 6px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin: 6px 0;
}

.review-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #ff9800, #f57c00);
}

/* Review count */
.review-count {
    margin-top: 0.6rem;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--font-secondary);
}

/* Link */
.review-link {
    display: inline-block;
    margin-top: 0.6rem;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--accent-gold);
    text-decoration: none;
}

/* Custom images smaller */
.review-custom-img {
    width: 100%;
    max-width: 140px;
    height: auto;
    margin: 10px auto;
    display: block;
    border-radius: 6px;
}

/* Responsive fallback */
@media (max-width: 1200px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}


        

        .footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}

.visitor-counter {
    font-weight: 500;
}

.visitor-counter span {
    font-weight: 700;
    color: #ff6be5;
    margin-left: 6px;
}



        .social-icons a {
            margin: 0 0.4rem;
            font-size: 1.4rem;
            color: var(--white);
            transition: color var(--transition-base);
        }

        .social-icons a:hover {
            color: var(--accent-gold);
        }

        /* Chatbot Styles */
        #chatbot-icon {
      z-index: 99999 !important;
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #457b9d, #3ed685);
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 20px;
            cursor: pointer;
            z-index: 9999;
            box-shadow: 0 10px 28px rgba(0,0,0,0.35);
            transition: 0.3s ease;
        }

        #chatbot-icon:hover {
            transform: translateY(-5px);
        }

        #chatbot-box {
      z-index: 99998 !important;
            width: 360px;
            position: fixed;
            bottom: 100px;
            right: 25px;
            border-radius: 16px;
            background: #ffffff !important;
            box-shadow: 0 10px 28px rgba(0,0,0,0.35);
            overflow: hidden;
            display: none;
            z-index: 9999;
        }

        #chatHeader {
            background: linear-gradient(135deg, #4dde7b, #c84ad6);
            color: #fff;
            padding: 12px;
            font-size: 1.1rem;
            text-align: center;
            font-weight: 700;
        }

        #chat

        .message {
            margin: 8px 0;
            font-size: 0.85rem;
        }

        .bot {
            font-weight: 600;
            color: #581759;
        }

        .options button {
            margin: 6px 4px 0 0;
            padding: 8px 12px;
            border-radius: 25px;
            border: none;
            background: linear-gradient(135deg, #44ea68, #ac43dd);
            color: white;
            cursor: pointer;
        }
        
        @media (max-width: 992px) {
            
            .hamburger { display: block; }
            .section-title { font-size: 2.5rem; }
        }
        @media (max-width: 992px) {
    

    .nav-links.active {
        display: flex;
    }
}

    

/* --- Styles from portfolio.html --- */

        /* --- Your previous CSS --- */
        :root { --primary-color: #b1eb4d; --secondary-color: #876c98; --accent-gold: #3aa834; --gradient-start: #82d3419e; --gradient-middle: #94e95f; --gradient-end: #66c47c; --dark-bg: #1e293b; --light-bg: #ffffff; --font-primary: #212529; --font-secondary: #4c5a6b; --font-accent: #0e3505; --white: #ffffff; --shadow-sm: 0 2px 8px rgba(0,0,0,0.08); --shadow-md: 0 4px 16px rgba(0,0,0,0.12); --shadow-lg: 0 8px 32px rgba(0,0,0,0.16); --shadow-xl: 0 16px 48px rgba(0,0,0,0.2); --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1); --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1); --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
        
        
        @keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
        
        a { text-decoration: none; color: var(--font-primary); transition: color var(--transition-base); }
        #particles-js { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
        
        nav.scrolled { padding: 0.7rem 0; background: rgba(255, 255, 255, 0.98); }
        .nav-container { display: flex; justify-content: space-between; align-items: center; }
        .logo img { height: 65px; border: 2px solid var(--dark-bg); border-radius: 45px; padding: 2px; }
        
        .nav-links a { color: var(--font-primary); font-weight: 600; font-size: 1rem; position: relative; }
        .nav-links a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -8px; left: 50%; background: linear-gradient(90deg, var(--secondary-color), var(--accent-gold)); transition: all var(--transition-base); transform: translateX(-50%); }
        .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
        .nav-links a:hover, .nav-links a.active { color: var(--font-accent); }
        /* Right contact block */
.nav-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, #eaffd8, #c9f7b5);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
/* Phone number */
.nav-phone {
    font-weight: 700;
    color: #0e3505;
    text-decoration: none;
    font-size: 0.85rem;
}
.nav-phone i {
    color: #15a041;
    margin-right: 6px;
}
/* Social icons row */
.nav-social {
    display: flex;
    gap: 10px;
}
.nav-social a {
    font-size: 1.1rem;
    color: #212529;
    transition: 0.3s ease;
}
.nav-social a:hover {
    color: #15a041;
    transform: translateY(-2px);
}
       
        .hamburger { display: none; cursor: pointer; font-size: 1.7rem; }
        .section-title { font-size: 3rem; text-align: center; margin-bottom: 1.2rem; position: relative; }
        .section-subtitle { text-align: center; font-size: 1.1rem; max-width: 700px; margin: 0 auto 3.5rem; color: var(--font-secondary); }
        .glass { background: rgba(231, 234, 219, 0.85); backdrop-filter: blur(15px); border: 2px solid var(--dark-bg); border-radius: 18px; padding: 2rem; transition: all 0.5s ease; box-shadow: var(--shadow-sm); cursor: pointer; text-align: center; }
        .glass:hover { transform: translateY(-10px); border-color: var(--primary-color); box-shadow: 0 10px 30px rgba(244, 208, 63, 0.2); }
        .work-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }
        .work-card h3 { margin: 1rem 0 0.8rem; font-size: 1.8rem; }
        .work-card p { font-size: 1.1rem; color: var(--font-secondary); }
/* =======================
   REVIEWS SECTION
======================= */
/* =======================
   REVIEWS SECTION (UPDATED)
======================= */
.reviews-section {
    padding: 70px 0;
}
/* Force 4 cards in one row */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 in one line */
    gap: 1.4rem;
    margin-top: 2.5rem;
}
/* Smaller review card */
.review-card {
    background: rgba(255,255,255,0.92);
    border-radius: 14px;
    padding: 1.4rem 1.2rem; /* reduced padding */
    box-shadow: var(--shadow-sm);
    transition: 0.35s ease;
    text-align: center;
}
.review-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
/* Smaller logos */
.review-logo {
    height: 32px;
    margin-bottom: 0.6rem;
}
/* Reduced score size */
.review-score {
    font-size: 2.4rem;
    font-weight: 800;
    color: #f57c00;
}
/* Stars */
.review-stars {
    color: #fbc02d;
    margin: 0.3rem 0 0.6rem;
    font-size: 0.85rem;
}
/* Progress bar */
.review-bar {
    height: 6px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin: 6px 0;
}
.review-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #ff9800, #f57c00);
}
/* Review count */
.review-count {
    margin-top: 0.6rem;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--font-secondary);
}
/* Link */
.review-link {
    display: inline-block;
    margin-top: 0.6rem;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--accent-gold);
    text-decoration: none;
}
/* Custom images smaller */
.review-custom-img {
    width: 100%;
    max-width: 140px;
    height: auto;
    margin: 10px auto;
    display: block;
    border-radius: 6px;
}
/* Responsive fallback */
@media (max-width: 1200px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}
.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}
.visitor-counter {
    font-weight: 500;
}
.visitor-counter span {
    font-weight: 700;
    color: #ff6be5;
    margin-left: 6px;
}
        
       
        .social-icons a { margin: 0 0.4rem; font-size: 1.4rem; color: var(--white); transition: color var(--transition-base); }
        .social-icons a:hover { color: var(--accent-gold); }
        /* Sidebar & Work Items */
        .work-layout { display: grid; grid-template-columns: 260px 1fr; gap: 2rem; }
        .work-sidebar { background: rgba(231, 234, 219, 0.9); border: 2px solid var(--dark-bg); border-radius: 18px; padding: 1.8rem; height: fit-content; }
        .work-sidebar h3 { font-size: 1.5rem; margin-bottom: 1.2rem; }
        .filter-btn { display: flex; align-items: center; gap: 10px; padding: 0.9rem 1rem; margin-bottom: 0.7rem; border-radius: 14px; cursor: pointer; font-weight: 600; transition: var(--transition-base); }
        .filter-btn i { color: var(--accent-gold); }
        .filter-btn.active, .filter-btn:hover { background: linear-gradient(135deg, var(--primary-color), var(--accent-gold)); color: #fff; }
        .filter-btn.active i, .filter-btn:hover i { color: #fff; }
        .work-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
        .project-item { display: block; }
          /* ===== WORK CARD SIZE REDUCTION (NO HTML CHANGES) ===== */
                /* Reduce grid card width slightly */
                .work-content {
                    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
                }
                /* Reduce overall card padding */
                .glass {
                    padding: 1.2rem;
                }
                /* Force equal card height */
                .project-item {
                    height: 100%;
                }
                .work-card {
                    display: flex;
                    flex-direction: column;
                    height: 100%;
                }
                /* Uniform image size */
                .work-card img {
                    height: 160px;
                    object-fit: cover;
                }
                /* Smaller title */
                .work-card h3 {
                    font-size: 1.2rem;
                    margin: 0.6rem 0 0.4rem;
                }
                /* Smaller description text */
                .work-card p {
                    font-size: 0.9rem;
                    line-height: 1.4;
                }
                #chatbot-icon {
      z-index: 99999 !important;
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #457b9d, #3ed685);
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 20px;
            cursor: pointer;
            z-index: 9999;
            box-shadow: 0 10px 28px rgba(0,0,0,0.35);
            transition: 0.3s ease;
        }
        #chatbot-icon:hover {
            transform: translateY(-5px);
        }
        #chatbot-box {
      z-index: 99998 !important;
            width: 360px;
            position: fixed;
            bottom: 100px;
            right: 25px;
            border-radius: 16px;
            background: #ffffff !important;
            box-shadow: 0 10px 28px rgba(0,0,0,0.35);
            overflow: hidden;
            display: none;
            z-index: 9999;
        }
        #chatHeader {
            background: linear-gradient(135deg, #4dde7b, #c84ad6);
            color: #fff;
            padding: 12px;
            font-size: 1.1rem;
            text-align: center;
            font-weight: 700;
        }
        #chat
        .message {
            margin: 8px 0;
            font-size: 0.85rem;
        }
        .bot {
            font-weight: 600;
            color: #581759;
        }
        .options button {
            margin: 6px 4px 0 0;
            padding: 8px 12px;
            border-radius: 25px;
            border: none;
            background: linear-gradient(135deg, #44ea68, #ac43dd);
            color: white;
            cursor: pointer;
        }
     
                @media (max-width: 992px) {  .hamburger { display: block; } .section-title { font-size: 2.5rem; } }
    @media (max-width: 992px) {
    
    .nav-links.active {
        display: flex;
    }
}

    

/* --- Styles from career.html --- */

        :root {
            --primary-color: #b1eb4d;       
            --secondary-color: #876c98;
            --accent-gold: #3aa834;
            --gradient-start: #82d3419e;
            --gradient-middle: #94e95f;
            --gradient-end: #66c47c;
            --dark-bg: #1e293b;
            --light-bg: #ffffff;           
            --font-primary: #212529;        
            --font-secondary: #4c5a6b;      
            --font-accent: #0e3505;         
            --white: #ffffff;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
            --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
            --shadow-xl: 0 16px 48px rgba(0,0,0,0.2);
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        

        

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        

        a { text-decoration: none; color: var(--font-primary); transition: color var(--transition-base); }

        #particles-js {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        

        nav.scrolled {
            padding: 0.7rem 0;
            background: rgba(255, 255, 255, 0.98);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img {
            height: 65px;
            border: 2px solid var(--dark-bg);
            border-radius: 45px;
            padding: 2px;
        }

        

        .nav-links a {
            color: var(--font-primary);
            font-weight: 600;
            font-size: 1rem;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -8px;
            left: 50%;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-gold));
            transition: all var(--transition-base);
            transform: translateX(-50%);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--font-accent);
        }

        .nav-contact {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            padding: 8px 14px;
            border-radius: 14px;
            background: linear-gradient(135deg, #eaffd8, #c9f7b5);
            box-shadow: 0 6px 18px rgba(0,0,0,0.12);
        }

        .nav-phone {
            font-weight: 700;
            color: #0e3505;
            text-decoration: none;
            font-size: 0.85rem;
        }

        .nav-phone i {
            color: #15a041;
            margin-right: 6px;
        }

        .nav-social {
            display: flex;
            gap: 10px;
        }

        .nav-social a {
            font-size: 1.1rem;
            color: #212529;
            transition: 0.3s ease;
        }

        .nav-social a:hover {
            color: #15a041;
            transform: translateY(-2px);
        }

        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.7rem;
        }

        .section-title {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 1.2rem;
            position: relative;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 3.5rem;
            color: var(--font-secondary);
        }

        .careers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .job-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 18px;
            padding: 2rem;
            box-shadow: var(--shadow-md);
            transition: var(--transition-base);
            border: 1px solid rgba(0,0,0,0.05);
        }

        .job-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .job-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--font-accent);
            margin-bottom: 0.8rem;
        }

        .job-meta-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 1.2rem;
        }

        .tag {
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .tag-location {
            background: #e8f5e8;
            color: #2e7d32;
        }

        .tag-type {
            background: #e3f2fd;
            color: #1976d2;
        }

        .tag-exp {
            background: #f3e5f5;
            color: #7b1fa2;
        }

        .job-description {
            color: var(--font-secondary);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .contact-info {
            background: #f8f9fa;
            padding: 1rem;
            border-radius: 12px;
            border-left: 4px solid var(--accent-gold);
            margin-bottom: 1.5rem;
        }

        .apply-btn {
            display: inline-block;
            padding: 0.9rem 2rem;
            background: linear-gradient(135deg, var(--accent-gold), var(--primary-color));
            color: white;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: var(--transition-base);
        }

        .apply-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        .careers-form {
            max-width: 700px;
            margin: 3rem auto 0;
            padding: 2.5rem;
            background: rgba(231, 234, 219, 0.9);
            border-radius: 18px;
            box-shadow: var(--shadow-lg);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--font-primary);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.9rem 1.2rem;
            border: 1px solid rgba(244, 208, 63, 0.4);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.9);
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            color: var(--font-primary);
            transition: var(--transition-fast);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 3px rgba(135, 108, 152, 0.2);
        }

        .submit-btn {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color), var(--accent-gold));
            color: var(--white);
            padding: 1rem 3rem;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all var(--transition-base);
            width: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0, 128, 128, 0.4);
        }

        .no-jobs {
            text-align: center;
            padding: 80px 20px;
            color: #666;
            grid-column: 1 / -1;
        }

        .no-jobs i {
            font-size: 5rem;
            color: #ddd;
            margin-bottom: 20px;
        }
        
    .reviews-section {
        padding: 70px 0;
    }

    .reviews-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr); 
        gap: 1.4rem;
        margin-top: 2.5rem;
    }

    .review-card {
        background: rgba(255,255,255,0.92);
        border-radius: 14px;
        padding: 1.4rem 1.2rem;   
        box-shadow: var(--shadow-sm);
        transition: 0.35s ease;
        text-align: center;
    }

    .review-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
    }

    .review-logo {
        height: 32px;
        margin-bottom: 0.6rem;
    }

    .review-score {
        font-size: 2.4rem;
        font-weight: 800;
        color: #f57c00;
    }

    .review-stars {
        color: #fbc02d;
        margin: 0.3rem 0 0.6rem;
        font-size: 0.85rem;
    }

    .review-bar {
        height: 6px;
        background: #e0e0e0;
        border-radius: 10px;
        overflow: hidden;
        margin: 6px 0;
    }

    .review-bar span {
        display: block;
        height: 100%;
        background: linear-gradient(90deg, #ff9800, #f57c00);
    }

    .review-count {
        margin-top: 0.6rem;
        font-weight: 600;
        font-size: 0.85rem;
        color: var(--font-secondary);
    }

    .review-link {
        display: inline-block;
        margin-top: 0.6rem;
        font-weight: 600;
        font-size: 0.85rem;
        color: var(--accent-gold);
        text-decoration: none;
    }

    .review-custom-img {
        width: 100%;
        max-width: 140px;
        height: auto;
        margin: 10px auto;
        display: block;
        border-radius: 6px;
    }

    @media (max-width: 1200px) {
        .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 600px) {
        .reviews-grid { grid-template-columns: 1fr; }
    }
    
    @media (max-width: 992px) {
        
        .nav-links.active { display: flex; }
        .hamburger { display: block; }
        .section-title { font-size: 2.5rem; }
    }

    

    .footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}

.visitor-counter {
    font-weight: 500;
}

.visitor-counter span {
    font-weight: 700;
    color: #ff6be5;
    margin-left: 6px;
}

    .social-icons a {
        margin: 0 0.4rem;
        font-size: 1.4rem;
        color: var(--white);
        transition: color var(--transition-base);
    }

    .social-icons a:hover { color: var(--accent-gold); }

    /* Chatbot Styles */
    #chatbot-icon {
      z-index: 99999 !important;
        position: fixed;
        bottom: 25px;
        right: 25px;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #457b9d, #3ed685);
        color: white;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 20px;
        cursor: pointer;
        z-index: 9999;
        box-shadow: 0 10px 28px rgba(0,0,0,0.35);
        transition: 0.3s ease;
    }

    #chatbot-box {
      z-index: 99998 !important;
        width: 360px;
        position: fixed;
        bottom: 100px;
        right: 25px;
        border-radius: 16px;
        background: #ffffff !important;
        box-shadow: 0 10px 28px rgba(0,0,0,0.35);
        overflow: hidden;
        display: none;
        z-index: 9999;
    }

    #chatHeader {
        background: linear-gradient(135deg, #4dde7b, #c84ad6);
        color: #fff;
        padding: 12px;
        font-size: 1.1rem;
        text-align: center;
        font-weight: 700;
    }

    #chat

    .message { margin: 8px 0; font-size: 0.85rem; }
    .bot { font-weight: 600; color: #581759; }

    .options button {
        margin: 6px 4px 0 0;
        padding: 8px 12px;
        border-radius: 25px;
        border: none;
        background: linear-gradient(135deg, #44ea68, #ac43dd);
        color: white;
        cursor: pointer;
    }
    

/* --- Styles from contact.html --- */

        :root {
            --primary-color: #b1eb4d;
            --secondary-color: #876c98;
            --accent-gold: #3aa834;
            --gradient-start: #82d3419e;
            --gradient-middle: #94e95f;
            --gradient-end: #66c47c;
            --dark-bg: #1e293b;
            --light-bg: #ffffff;
            --font-primary: #212529;
            --font-secondary: #4c5a6b;
            --font-accent: #0e3505;
            --white: #ffffff;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
            --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
            --shadow-xl: 0 16px 48px rgba(0,0,0,0.2);
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        a { text-decoration: none; color: var(--font-primary); transition: color var(--transition-base); }
        #particles-js {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        nav.scrolled {
            padding: 0.7rem 0;
            background: rgba(255, 255, 255, 0.98);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo img {
            height: 65px;
            border: 2px solid var(--dark-bg);
            border-radius: 45px;
            padding: 2px;
        }
        
        .nav-links a {
            color: var(--font-primary);
            font-weight: 600;
            font-size: 1rem;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -8px;
            left: 50%;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-gold));
            transition: all var(--transition-base);
            transform: translateX(-50%);
        }
        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--font-accent);
        }
        .nav-contact {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            padding: 8px 14px;
            border-radius: 14px;
            background: linear-gradient(135deg, #eaffd8, #c9f7b5);
            box-shadow: 0 6px 18px rgba(0,0,0,0.12);
        }
        .nav-phone {
            font-weight: 700;
            color: #0e3505;
            text-decoration: none;
            font-size: 0.85rem;
        }
        .nav-phone i {
            color: #15a041;
            margin-right: 6px;
        }
        .nav-social {
            display: flex;
            gap: 10px;
        }
        .nav-social a {
            font-size: 1.1rem;
            color: #212529;
            transition: 0.3s ease;
        }
        .nav-social a:hover {
            color: #15a041;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.7rem;
        }
        .section-title {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 1.2rem;
            position: relative;
        }
        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 3.5rem;
            color: var(--font-secondary);
        }
        .glass {
            background: rgba(231, 234, 219, 0.85);
            backdrop-filter: blur(15px);
            border: 2px solid var(--dark-bg);
            border-radius: 18px;
            padding: 2rem;
            transition: all 0.5s ease;
            box-shadow: var(--shadow-sm);
        }
        .glass:hover {
            transform: translateY(-10px);
            border-color: var(--primary-color);
            box-shadow: 0 10px 30px rgba(244, 208, 63, 0.2);
        }
        .contact-grid {
            max-width: 1100px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }
        .contact-card h3 {
            margin-bottom: 1rem;
            color: var(--font-accent);
        }
        .contact-card p {
            margin-bottom: 1rem;
            line-height: 1.8;
        }
        .map-container {
            margin-top: 1.5rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            height: 300px;
        }
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--font-primary);
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.9rem 1.2rem;
            border: 1px solid rgba(244, 208, 63, 0.4);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.9);
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            color: var(--font-primary);
            transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 3px rgba(0, 128, 128, 0.2);
        }
        .submit-btn {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color), var(--accent-gold));
            color: var(--white);
            padding: 0.9rem 2.5rem;
            border: none;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all var(--transition-base);
            width: 100%;
            margin-top: 1rem;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 128, 128, 0.4);
        }
        .reviews-section {
            padding: 70px 0;
        }
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.4rem;
            margin-top: 2.5rem;
        }
        .review-card {
            background: rgba(255,255,255,0.92);
            border-radius: 14px;
            padding: 1.4rem 1.2rem;
            box-shadow: var(--shadow-sm);
            transition: 0.35s ease;
            text-align: center;
        }
        .review-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-md);
        }
        .review-logo {
            height: 32px;
            margin-bottom: 0.6rem;
        }
        .review-score {
            font-size: 2.4rem;
            font-weight: 800;
            color: #f57c00;
        }
        .review-stars {
            color: #fbc02d;
            margin: 0.3rem 0 0.6rem;
            font-size: 0.85rem;
        }
        .review-bar {
            height: 6px;
            background: #e0e0e0;
            border-radius: 10px;
            overflow: hidden;
            margin: 6px 0;
        }
        .review-bar span {
            display: block;
            height: 100%;
            background: linear-gradient(90deg, #ff9800, #f57c00);
        }
        .review-count {
            margin-top: 0.6rem;
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--font-secondary);
        }
        .review-link {
            display: inline-block;
            margin-top: 0.6rem;
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--accent-gold);
            text-decoration: none;
        }
        .review-custom-img {
            width: 100%;
            max-width: 140px;
            height: auto;
            margin: 10px auto;
            display: block;
            border-radius: 6px;
        }
        @media (max-width: 1200px) {
            .reviews-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 600px) {
            .reviews-grid { grid-template-columns: 1fr; }
        }
        
        .footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}

.visitor-counter {
    font-weight: 500;
}

.visitor-counter span {
    font-weight: 700;
    color: #ff6be5;
    margin-left: 6px;
}
        .social-icons a {
            margin: 0 0.4rem;
            font-size: 1.4rem;
            color: var(--white);
            transition: color var(--transition-base);
        }
        .social-icons a:hover { color: var(--accent-gold); }
        #chatbot-icon {
      z-index: 99999 !important;
            position: fixed; bottom: 25px; right: 25px; width: 60px; height: 60px;
            background: linear-gradient(135deg, #457b9d, #3ed685);
            color: white; border-radius: 50%; display: flex;
            justify-content: center; align-items: center; font-size: 20px;
            cursor: pointer; z-index: 9999; box-shadow: 0 10px 28px rgba(0,0,0,0.35);
            transition: 0.3s ease;
        }
        #chatbot-box {
      z-index: 99998 !important;
            width: 360px; position: fixed; bottom: 100px; right: 25px;
            border-radius: 16px; background: #ffffff !important;
            box-shadow: 0 10px 28px rgba(0,0,0,0.35); overflow: hidden;
            display: none; z-index: 9999;
        }
        #chatHeader {
            background: linear-gradient(135deg, #4dde7b, #c84ad6);
            color: #fff; padding: 12px; font-size: 1.1rem;
            text-align: center; font-weight: 700;
        }
        #chat
        .message { margin: 8px 0; font-size: 0.85rem; }
        .bot { font-weight: 600; color: #581759; }
        .options button {
            margin: 6px 4px 0 0; padding: 8px 12px; border-radius: 25px;
            border: none; background: linear-gradient(135deg, #44ea68, #ac43dd);
            color: white; cursor: pointer;
        }
        @media (max-width: 992px) {
            
            .nav-links.active { display: flex; }
            .hamburger { display: block; }
            .section-title { font-size: 2.5rem; }
        }
    

/* Fix for topbar actions squishing */
.phone-pill, .topbar__actions .btn {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}

/* Fix for button--training squishing */
.button--training {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}

/* Responsive fixes for topbar */




/* Active Nav Link Styling */
.main-nav a.active {
    color: #2d8f79 !important;
    font-weight: 800 !important;
    position: relative;
}
.main-nav a.active::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #2d8f79;
    border-radius: 2px;
}

/* Updated Responsive fixes for topbar */
@media (max-width: 1450px) {
    .topbar__inner { gap: 8px !important; padding: 8px 8px !important; }
    .main-nav { gap: 8px !important; }
    .main-nav a { font-size: 0.85rem !important; }
    .topbar__actions { gap: 4px !important; padding: 4px !important; }
}
@media (max-width: 1250px) {
    .phone-pill { display: none !important; }
    .button--training { padding: 6px 10px !important; font-size: 0.8rem !important; }
}
@media (max-width: 1150px) {
    .social-chips { display: none !important; }
}
@media (max-width: 1024px) {
    .topbar__actions .button--training { display: none !important; }
}

/* Comprehensive Responsive Overrides */

@media (max-width: 992px) {
    /* Grids to 2 columns */
    .service-grid, .solution-grid, .process-grid, .featured-grid, .why-grid, .life-grid, .careers-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .hero-container, .hero__inner, .work-layout {
        grid-template-columns: 1fr !important;
    }
    .footer__grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    /* Topbar adjustments */
    .topbar__inner {
        display: flex !important;
        justify-content: space-between !important;
    }
    
    .menu-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        gap: 4px !important;
    }

    .topbar__menu {
        display: none !important; /* Hide by default on mobile, handled by toggle */
    }

    .topbar.topbar--open .topbar__menu {
        display: flex !important;
        flex-direction: column !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important;
        background: rgba(255, 255, 255, 0.98) !important;
        padding: 20px !important;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
        gap: 15px !important;
        z-index: 9999 !important;
    }

    .topbar.topbar--open .main-nav {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .topbar.topbar--open .topbar__actions {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }
}

@media (max-width: 768px) {
    /* Grids to 1 column */
    .service-grid, .solution-grid, .process-grid, .featured-grid, .why-grid, .life-grid, .careers-grid, .reviews-grid, .footer__grid {
        grid-template-columns: 1fr !important;
    }
    
    .hero__content h1, .hero-left h1 {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
    }
    
    .hero__content p, .hero-left p {
        font-size: 1rem !important;
    }
    
    .section {
        padding: 40px 20px !important;
    }
    
    .dashboard-card, .dashboard, .whatsapp-card, .search-card, .float-card {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 20px;
        animation: none !important;
        transform: none !important;
    }

    .hero-right, .hero__visual {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 30px;
    }
    
    .stats {
        grid-template-columns: 1fr !important;
        margin: 20px 0 0 !important;
    }
}

/* User Feedback Adjustments: Font & Logo Sizes */
html {
    font-size: 18px !important; /* Boosts all rem-based fonts globally */
}

.brand__logo {
    height: 50px !important; /* Constrains the massive logo */
    width: auto !important;
}

@media (max-width: 992px) {
    .brand__logo {
        height: 45px !important; 
    }
}

@media (max-width: 768px) {
    html {
        font-size: 16px !important; /* Keep mobile fonts slightly tighter to avoid wrapping issues */
    }
    .brand__logo {
        height: 40px !important;
    }
}


