/* ============================================================
   Hydrosol – Main Styles (Flexbox + CSS Grid)
   ============================================================ */

:root {
  --lime: #8cc63f;
  --lime-bright: #a2d96a;
  --forest: #0a1a10;
  --forest-deep: #040d06;
  --forest-mid: #0d2818;
  --forest-card: #0f3d20;
  --blue: #4a90e2;
  --blue-light: #e8f2fc;
  --bg-page: #f4f8f4;
  --bg-muted: #f2f7f3;
  --text: #0a1a10;
  --text-muted: #5a6b5e;
  --white: #ffffff;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow: 0 4px 24px rgba(10, 26, 16, 0.08);
  --shadow-lg: 0 24px 60px rgba(10, 26, 16, 0.12);
  --transition: 0.3s ease;
  --hover-lift: translateY(-6px);
  --container: 1200px;
  --gap: 1.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-page);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
  padding: 0;
}

.text-lime {
  color: var(--lime);
}

/* ---------- Layout shell ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section-container {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-intro {
  margin-bottom: 3rem;
}

.section-intro--center {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section-title--left {
  text-align: left;
}

/* ---------- Premium hover interactions ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, border-color 0.28s ease, color 0.28s ease;
}

.btn:active {
  transform: translateY(-1px) scale(0.98);
}

.feature-card,
.expect-card,
.how-card,
.eco-tile,
.revolution-panel,
.footer-glass-card {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.engineered-img {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
}

.engineered-visual:hover .engineered-img {
  transform: scale(1.03);
  filter: brightness(1.05);
}

.eco-tile {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.eco-tile:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.footer-card-links a,
.footer-contact a,
.footer-legal a,
.nav-link {
  transition: color 0.25s ease, opacity 0.25s ease;
}

.contact-icon {
  transition: background 0.3s ease, transform 0.3s ease;
}

.footer-contact li:hover .contact-icon {
  transform: scale(1.08);
  background: rgba(94, 200, 232, 0.35);
}

.rev-avatar {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rev-avatar:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* ---------- Typography ---------- */
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: 1rem;
  margin-bottom: 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1rem;
}

.eyebrow-light {
  color: var(--lime-bright);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: #fffc;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);

  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-brand {
  flex-shrink: 0;
  z-index: 2;
}

.brand-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s ease, transform 0.3s ease;
  filter: brightness(0) invert(1);
}
.site-header.scrolled .brand-logo {filter: none;}

.header-brand:hover .brand-logo {
  opacity: 0.9;
  transform: scale(1.02);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  cursor: pointer;
  z-index: 2;
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
    margin: 0;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
  padding: 0.5rem 1rem;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.25rem;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--lime);
}
.nav-link:focus {
  color: #fff;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}
.site-header.scrolled .nav-menu li  .nav-link {  color: #5b675a;}
.site-header.scrolled  .nav-link::after {background:#5b675a; }
.btn-enquiry {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  padding: 7px 20px;
  border-radius: 12px;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.site-header.scrolled  .btn-enquiry {background: #537d3e;color: #fff;border-color: #537d3e;}

.btn-enquiry:hover {
  background: var(--white);
  color: var(--forest-deep);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-enquiry-solid {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--forest-deep);
}

.btn-enquiry-solid:hover {
  background: var(--lime-bright);
  border-color: var(--lime-bright);
  color: var(--forest-deep);
}

/* ---------- Hero ---------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--forest-deep);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 13, 6, 0.5) 0%, rgba(4, 13, 6, 0.78) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 10rem 0 6rem;
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 1.75rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.hero-title {
  font-size: 6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-lead {
  font-size: 24px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  max-width: 80%;
  margin-bottom: 30px;
}

.btn-hero-primary {
  background: var(--white);
  color: var(--forest-deep);
  font-weight: 600;
  font-size: 18px;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  border: none;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-hero-primary:hover {
  background: var(--white);
  color: var(--forest-deep);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(255, 255, 255, 0.2);
}

.btn-hero-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 18px;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--lime);
  color: var(--lime);
  transform: translateY(-3px);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color var(--transition), transform var(--transition);
}

.hero-scroll:hover {
  color: var(--lime);
  transform: translateY(4px);
}

.hero-content-wrap {
/*  max-width: 58.333%;*/
  max-width: 45%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

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

/* ---------- Features ---------- */
.section-features {
  background: #f3f8f4;
}

.section-features .section-container {
  padding-top: 6.6rem;
  padding-bottom: 8rem;
}

.section-features .container {
  max-width: 1470px;
}

.section-features .section-intro {
  max-width: 820px;
  margin-bottom: 5rem;
}

.section-features .section-title {
  color: #142714;
  font-size: 48px;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.section-features .section-subtitle {
  max-width: 780px;
  margin: 1.6rem auto 0;
  color: #4d7458;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: -0.015em;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem 2.25rem 2.05rem;
  min-height: 272px;
  box-shadow: 0 22px 46px rgba(15, 46, 24, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 62px rgba(15, 46, 24, 0.12);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: #568846;
  margin-bottom: 1.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 26px rgba(47, 102, 39, 0.24);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-icon svg path {stroke: #fff;}

.feature-card:hover .feature-icon {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 34px rgba(47, 102, 39, 0.3);
}

.feature-icon svg {
  display: block;
  width: 32px;
  height: 32px;;

}

/*.icon-degrade { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 2v4M12 18v4M4.93 4.93l2.83 2.83M16.24 16.24l2.83 2.83M2 12h4M18 12h4'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 2v4M12 18v4M4.93 4.93l2.83 2.83M16.24 16.24l2.83 2.83M2 12h4M18 12h4'/%3E%3C/svg%3E"); }
.icon-water { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 2.69l5.66 5.66a8 8 0 1 1-11.31 0z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 2.69l5.66 5.66a8 8 0 1 1-11.31 0z'/%3E%3C/svg%3E"); }
.icon-nutrient { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M22 12h-4l-3 9L9 3l-3 9H2'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M22 12h-4l-3 9L9 3l-3 9H2'/%3E%3C/svg%3E"); }
.icon-cost { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 1v22M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 1v22M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6'/%3E%3C/svg%3E"); }
*/
.feature-card h3 {
  color: #102416;
  font-size: 1.375rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.035em;
  margin-bottom: 0.95rem;
}

.feature-card p {
  max-width: 260px;
  font-size: 1rem;
  color: #5d7a61;
  margin: 0;
  line-height: 1.55;
}

/* ---------- Engineered ---------- */
.section-engineered {
  background: #f8faf8;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.section-engineered .section-container {
  padding-top: 5rem;
  padding-bottom: 6rem;
}

.section-engineered .container {
  max-width: 1470px;
}

.split-layout--engineered {
  grid-template-columns: minmax(0, 1fr) 696px;
  gap: 5.5rem;
}

.split-layout--engineered .split-layout__content {
  position: relative;
  max-width: 685px;
  padding-left: 2rem;
}

.split-layout--engineered .split-layout__content::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35rem;
  bottom: 0.25rem;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #477b36 0%, #5a9cc8 100%);
}

.section-engineered .section-title {
  max-width: 610px;
  font-size: clamp(2.75rem, 3.25vw, 3.125rem);
  line-height: 1.22;
  letter-spacing: -0.045em;
  color: #02130b;
  margin-bottom: 2rem;
}

.engineered-text--last {
  margin-bottom: 0;
}

.engineered-caption {
  position: absolute;
  left: 2.5rem;
  right: 2.5rem;
  bottom: 2.5rem;
  z-index: 2;
  margin: 0;
  color: var(--white);
}

.engineered-img {
  border-radius: 28px;
}

.engineered-text {
  max-width: 650px;
  color: #466b51;
  font-size: 1.375rem;
  line-height: 1.45;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
}

.engineered-visual {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  height: 696px;
  box-shadow: 0 30px 70px rgba(7, 35, 18, 0.15);
  isolation: isolate;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.engineered-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(4, 13, 6, 0) 42%, rgba(42, 91, 35, 0.82) 100%);
  pointer-events: none;
}

.engineered-visual:hover {
  transform: translateY(-6px);
  box-shadow: 0 38px 82px rgba(7, 35, 18, 0.2);
}

.engineered-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  box-shadow: none;
}

.engineered-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 2;
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-areas:
    "num title"
    "num desc";
  align-items: center;
  column-gap: 1rem;
  min-width: 275px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.badge-num {
  grid-area: num;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #3f88bf;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
}

.badge-title {
  grid-area: title;
  display: block;
  color: #102416;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
}

.badge-desc {
  grid-area: desc;
  display: block;
  color: #527157;
  font-size: 0.9375rem;
  line-height: 1.25;
}

.engineered-caption h4 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.625rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.035em;
  margin: 0 0 0.55rem;
}

.engineered-caption-icon {
  flex-shrink: 0;
  color: #3f88bf;
}

.engineered-caption p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.45;
  margin: 0;
}

/* ---------- Shared pill badge ---------- */
.pill-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2d5a3a;
  background: rgba(140, 198, 63, 0.22);
  padding: 0.45rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.pill-badge--how {
  color: #6ec9e8;
  background: rgba(78, 180, 220, 0.12);
  border: 1px solid rgba(78, 180, 220, 0.2);
}

/* ---------- What You Can Expect ---------- */
.section-expect {
  padding: 6rem 0;
  background: #f4f8f4;
  background-image: radial-gradient(ellipse 80% 60% at 0% 0%, rgba(140, 198, 63, 0.12), transparent 55%);
}

.expect-header {
  display: grid;
  grid-template-columns: 58.333% 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.5rem;
}

.expect-title {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #0a1a10;
  margin: 0;
}

.expect-highlight {
  color: #3d633d;
}

.expect-aside {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #5a6b5e;
  margin: 0;
  text-align: right;
  max-width: 22rem;
  margin-left: auto;
}

.expect-cards-top {
  display: grid;
    grid-template-columns: 40% 33% 25%;
  gap: 1rem;
  margin-bottom: 1rem;
}

.expect-cards-bottom {
  display: grid;
  grid-template-columns: 58.333% 1fr;
  gap: 1rem;
}
.expect-cards-bottom .expect-card-icon svg {width: 40px; height: 40px;}

.roots-inner {
  display: flex;
  align-items: center;
  gap: 30px;
}

.roots-inner__content {
  flex: 1;
  min-width: 0;
}

.expect-card--roots {
  min-height: auto;
}

.expect-card--yields {
  height: 100%;
}

.expect-card {
  border-radius: 28px;
  padding:30px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expect-card:hover {
  transform: var(--hover-lift);
  box-shadow: var(--shadow-lg);
}

.expect-card--green:hover {
  box-shadow: 0 24px 56px rgba(13, 40, 24, 0.35);
}
.expect-card-icon svg {height: 24px; width: 24px;}

.expect-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom:35px;
  border: 1.5px solid rgba(140, 198, 63, 0.45);
}

.expect-card-icon--water,
.expect-card-icon--shield,
.expect-card-icon--leaf {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
}

.expect-card-icon--sprout {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  background: #ecf1ea;
  border: none;
  color: #3d633d;
    margin-bottom: 0;
}
.expect-cards-bottom .expect-card-icon .expect-card-title { font-size: 26px;}
.expect-card--white .expect-card-icon--shield {
  background: rgba(140, 198, 63, 0.12);
  color: #3d633d;
  border-color: rgba(140, 198, 63, 0.35);
}

.expect-card-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  display: block;
  margin-bottom: 0.5rem;
}

.expect-card--white .expect-card-label,
.expect-card--roots .expect-card-label {
  color: #7a8a7e;
}

.expect-card-label--blue {
  color: #4a86b8 !important;
}

.expect-card-title {
    font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: auto;
}

.expect-card--green {
  background: linear-gradient(160deg, #1a3c26 0%, #0d2818 100%);
  color: #fff;
  box-shadow: 0 20px 50px rgba(13, 40, 24, 0.25);
}

.expect-card--green .expect-card-title {
  color: #fff;
   font-size:22px;
  max-width: 14rem;
}

.expect-card-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 1.5rem;
}

.expect-stat {
  font-size: clamp(3.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.expect-meta {
  font-size: 0.75rem;
  opacity: 0.65;
  align-self: flex-end;
  padding-bottom: 0.35rem;
}

.expect-card--white {
  background: #fff;
  box-shadow: 0 8px 32px rgba(10, 26, 16, 0.06);
}

.expect-card--white .expect-card-title {
  color: #1a2e22;
}

.stable-display {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1rem;
}

.stable-arrow {
  font-size: 84px;
  font-weight: 800;
  color: #a8d5a2;
  line-height: 1;
}

.stable-word {
  font-size: 36px;
  font-weight: 800;
  color: #3d633d;
  line-height: 1;
}

.expect-card--blue {
  background: linear-gradient(160deg, #4a86b8 0%, #3a6d9a 100%);
  color: #fff;
  box-shadow: 0 16px 40px rgba(58, 109, 154, 0.3);
}

.expect-card--blue .expect-card-title {
  color: #fff;
}

.expect-stat-block {
  margin-top: 1rem;
}

.expect-stat-block .expect-meta--inline {
  display: block;
  font-size: 0.8125rem;
  margin-top: 0.25rem;
  opacity: 0.85;
}

.expect-card--roots {
  min-height: auto;
  padding: 2rem;
}

.expect-card-body {
  font-size: 16px;
  color: #5a6b5e;
  line-height: 1.65;
  margin: 0.5rem 0 0;
    width: 85%;
}

.roots-stat-box {
  text-align: right;
}

.roots-stat-num {
  display: block;
  font-size: 64px;
  font-weight: 800;
  color: #1a3c26;
  line-height: 1;
}

.roots-stat-label {
  font-size: 14px;
  color: #5a6b5e;
  font-weight: 500;
}

.expect-card--yields {
  background: #d9e6eb;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.yields-copy {
    font-size: 30px;;
  font-weight: 700;
  line-height: 1.45;
  color: #1a2e22;
  margin: 0.75rem 0 0;
}

.yields-emphasis {
  color: #4a86b8;
}

/* ---------- How It Works ---------- */
.section-how {
  padding: 1.375rem 0 6rem;
  background: #060f09;
    position: relative;
  overflow: hidden;
    padding: 100px 0;
}

.section-how::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 18%;
  width: 720px;
  height: 560px;
  background: radial-gradient(circle, rgba(118, 192, 67, 0.13) 0%, rgba(118, 192, 67, 0.06) 38%, transparent 72%);
  pointer-events: none;
}

.section-how::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(78, 180, 220, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.section-how .container {
  max-width: 1470px;
  padding-left: 0;
  padding-right: 0;
}

.how-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 2rem;
  align-items: end;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}

.how-title {
  font-size: clamp(3.5rem, 4.25vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 0;
}

.how-title-accent {
  color: #64a83d;
  display: block;
}

.how-aside {
  font-size: 1.125rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
  text-align: center;
  max-width: 280px;
  margin-left: auto;
  margin-bottom: 0.75rem;
}

.how-timeline {
  position: relative;
  max-width: 1470px;
  margin: 0 auto;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
}

.how-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(58, 159, 207, 0.7), rgba(58, 159, 207, 0.34) 48%, rgba(58, 159, 207, 0.16));
}

.how-step {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 8.75rem;
  align-items: center;
  min-height: 288px;
}

.how-step--left .how-card {
  grid-column: 1;
}

.how-step--left .how-marker {
  left: calc(50% + 8px);
}

.how-step--right .how-marker {
  right: calc(50% + 8px);
}

.how-step--right .how-card {
  grid-column: 2;
}

.how-marker {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  pointer-events: none;
}

.how-marker span {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: linear-gradient(135deg, #4a99bf 0%, #a6dc7a 100%);
  border: 1px solid rgba(183, 237, 151, 0.42);
  box-shadow: 0 0 28px rgba(118, 192, 67, 0.38), 0 12px 28px rgba(0, 0, 0, 0.28), inset 0 0 16px rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  pointer-events: auto;
}

.how-step--right .how-marker span {
  background: linear-gradient(135deg, #469342 0%, #00c994 100%);
}

.how-step:hover .how-marker span,
.how-marker span:hover {
  transform: scale(1.08);
  border-color: rgba(118, 192, 67, 0.6);
  box-shadow: 0 0 34px rgba(118, 192, 67, 0.48), inset 0 0 16px rgba(118, 192, 67, 0.14);
}

.how-card {
  background: rgba(15, 27, 18, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  padding: 2.5rem;
  width: 100%;
  min-height: 288px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.22), 0 0 40px rgba(94, 166, 73, 0.04);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.how-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(118, 192, 67, 0.25);
  transform: var(--hover-lift);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.22), 0 0 30px rgba(118, 192, 67, 0.08);
}

.how-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.65rem;
}

.how-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.how-icon--teal { background: linear-gradient(135deg, #4b98bd 0%, #a7dd7d 100%); }
.how-icon--green { background: linear-gradient(135deg, #439442 0%, #00c795 100%); }
.how-icon--blue { background: linear-gradient(135deg, #4b98bd 0%, #a7dd7d 100%); }
.how-icon--lime { background: linear-gradient(135deg, #439442 0%, #00c795 100%); }

.how-phase {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.26);
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  white-space: nowrap;
}

.how-card h3 {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-bottom: 1rem;
}

.how-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 1520px) {
  .section-how .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 900px) {
  .how-header {
    grid-template-columns: 1fr;
    align-items: start;
    margin-bottom: 3rem;
  }

  .how-aside {
    text-align: left;
    margin-left: 0;
  }

  .how-timeline {
    gap: 1.5rem;
    padding-left: 4.25rem;
  }

  .how-line {
    left: 24px;
    transform: none;
  }

  .how-step {
    grid-template-columns: 1fr;
    column-gap: 0;
    min-height: 0;
  }

  .how-step--left .how-card,
  .how-step--right .how-card {
    grid-column: 1;
  }

  .how-step--left .how-marker,
  .how-step--right .how-marker {
    left: calc(-4.25rem + 24px);
    right: auto;
    transform: translate(-50%, -50%);
  }

  .how-card {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .section-how {
    padding: 4.5rem 0;
  }

  .how-timeline {
    padding-left: 3.5rem;
  }

  .how-line {
    left: 21px;
  }

  .how-step--left .how-marker,
  .how-step--right .how-marker {
    left: calc(-3.5rem + 21px);
  }

  .how-marker span {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    font-size: 0.75rem;
  }

  .how-card {
    border-radius: 20px;
    padding: 1.35rem;
  }

  .how-title {
    font-size: clamp(2.75rem, 13vw, 3.5rem);
  }

  .how-card-top {
    align-items: flex-start;
  }
}

/* ---------- Ecosystem ---------- */
.section-ecosystem {
  background: #f3f8f4;
}

.section-ecosystem .section-container {
  padding-top: 5rem;
  padding-bottom: 8rem;
}

.section-ecosystem .container {
  max-width: 1470px;
}

.section-ecosystem .section-intro {
  margin-bottom: 4.75rem;
}

.section-ecosystem .section-title {
  color: #02130b;
  font-size: clamp(2.5rem, 3.35vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.section-ecosystem .section-subtitle {
  margin-top: 1.35rem;
  color: #4d7458;
  font-size: 1.25rem;
  line-height: 1.45;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.eco-tile {
  position: relative;
  min-height: 367px;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.55rem 1.5rem;
  color: var(--white);
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 48px rgba(15, 46, 24, 0.1);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.eco-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
  will-change: transform;
}

.eco-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(4, 13, 6, 0.03) 22%, rgba(4, 13, 6, 0.72) 100%);
  transition: background 0.35s ease;
}

.eco-tile > * {
  position: relative;
  z-index: 2;
}

.eco-tile:hover,
.eco-tile:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 34px 68px rgba(15, 46, 24, 0.16);
}

.eco-tile:hover::before,
.eco-tile:focus-within::before {
  transform: translateY(-10px) scale(1.08);
  filter: brightness(1.05);
}

.eco-tile:hover::after,
.eco-tile:focus-within::after {
  background: linear-gradient(180deg, rgba(4, 13, 6, 0.04) 18%, rgba(65, 122, 50, 0.88) 100%);
}

.eco-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.eco-tile:hover .eco-icon,
.eco-tile:focus-within .eco-icon {
  transform: scale(1.06);
  background: rgba(63, 136, 191, 0.95);
  border-color: rgba(255, 255, 255, 0.22);
}

/*.eco-3 .eco-icon {
  background: rgba(63, 136, 191, 0.95);
  border-color: rgba(255, 255, 255, 0.22);
}*/

.eco-label {
  max-width: 14rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.105em;
  line-height: 1.25;
  opacity: 0.95;
  margin-bottom: 0.45rem;
}

.eco-tile h3 {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.035em;
  margin: 0;
}

.eco-1 { background-image: url('../images/app-field-crops.png'); }
.eco-2 { background-image: url('../images/app-horticulture.png'); }
.eco-3 { background-image: url('../images/app-plantation.png'); }
.eco-4 { background-image: url('../images/app-landscaping.png'); }
.eco-5 { background-image: url('../images/app-greenhouse.png'); }

/* ---------- Why Hydrosol ---------- */
.section-why {
  padding: 6rem 0;
  background: #fff;
}

.why-layout {
  display: grid;
  grid-template-columns: 46.666% 1fr;
  gap: 3rem;
  align-items: center;
}

.why-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #0a1a10;
  margin-bottom: 2rem;
}

.why-features li {
  display: flex;
  gap: 1rem;
  margin-bottom: 30px;
  padding: 20px;
 border-radius: 18px;
 transition-property: all;
 transition-timing-function:cubic-bezier(.4, 0, .2, 1);
}
.why-features li:hover {  background: #f6f8f4;}

.why-check {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(140, 198, 63, 0.22);
  color: #2d5a3a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}
.why-features li:hover .why-check {
  background: #2d5a3a;
  color:#fff ;

}
.why-features strong {
  display: block;
  font-size:18px;
  font-weight: 700;
  color: #0a1a10;
  margin-bottom: 0.35rem;
}

.why-features p {
  font-size: 16px;
  color: #5a6b5e;
  line-height: 1.65;
  margin: 0;
}

.revolution-panel {
  background: linear-gradient(165deg, #0a3d28 0%, #062c1d 45%, #041a12 100%);
  border-radius: 2.5rem;
  padding: 50px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(6, 44, 29, 0.35);
}

.revolution-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(118, 192, 67, 0.15) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.5;
  pointer-events: none;
}

.revolution-panel > * {
  position: relative;
  z-index: 1;
}

.rev-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1rem 0.75rem;
  text-align: center;
  height: 100%;
}

.rev-stat strong {
  display: block;
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}

.rev-stat span {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(168, 213, 162, 0.85);
  margin-top: 0.35rem;
}

.revolution-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 55px;
}

.revolution-farmers {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
   margin-bottom: 30px;
}

.rev-avatars {
  display: flex;
}

.rev-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #1a5c3a;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #062c1d;
  margin-left: -8px;
}

.rev-avatar:first-child {
  margin-left: 0;
}

.rev-avatar--more {
  background: #76c043;
  color: #062c1d;
}

.rev-avatar--sm {
  width: 40px;
  height: 40px;
  margin-left: 0;
  flex-shrink: 0;
}

.rev-farmers-text {
  font-size: 14px;
  color: rgba(168, 213, 162, 0.9);
}

.revolution-heading {
font-size: 82px;
  font-weight: 800;
  margin-bottom: 50px;
  color: #fff;
  width: 80%;
}

.revolution-heading span {
  color: #76c043;
}

.revolution-desc {
  font-size: 16px;
  color: #fff;
  line-height: 1.65;
  margin-bottom: 60px;
}

.revolution-quote {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
padding: 20px;
margin-bottom: 80px;
}

.revolution-quote p {
  font-size: 0.9375rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.quote-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.revolution-quote cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 0.875rem;
  color: #fff;
}

.quote-author span {
  display: flex;
  font-size: 0.75rem;
  color: rgba(168, 213, 162, 0.8);
}

.quote-stars {
  color: #f5c842;
  font-size: 0.75rem;
  letter-spacing: 2px;
  flex-shrink: 0;
}

.btn-revolution-cta {
  width: 100%;
  background: #fff;
  color: #062c1d;
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.9rem 1.5rem;
  border-radius: 14px;
  border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-revolution-cta:hover {
  background: #fff;
  color: #062c1d;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.revolution-panel:hover {
  box-shadow: 0 40px 72px rgba(6, 44, 29, 0.42);
}

/* ---------- CTA ---------- */
/*.section-cta {
  position: relative;
  overflow: hidden;
}*/

.section-cta{
  position: relative;
 
  background: url('../images/cta-bg.png') center/cover;
 height: 800px;
 z-index: 9;
}

.section-cta:before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(4, 13, 6, 0.68);
  z-index: -1;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-size: 96px;
}

/*.cta-container {
  position: relative;
  z-index: 2;
}*/

.cta-inner {
/*  max-width: 66.666%;*/

  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.cta-lead {
  color: rgba(255, 255, 255, 0.85);
   font-size: 24px;;
  margin-top: 1rem;
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, #0a1a10 0%, #030806 100%);
  color: #fff;
  overflow: hidden;
/*  padding: 4rem 0 0;*/
}

.footer-glow {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 400px;
  background: radial-gradient(ellipse, rgba(118, 192, 67, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.footer-watermark {
  position: absolute;
  left: 50%;
  top: 47%;
  transform: translate(-50%, -50%);
  font-size: clamp(4rem, 16vw, 12rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 0;
}

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

.footer-top {
  display: grid;
  grid-template-columns: 58.333% 1fr;
  gap: 2.5rem;
  align-items: flex-end;
  padding: 60px 0;
  position: relative;
  z-index: 1;
    border-bottom: 1px solid #ffffff30;
}

.footer-top__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
  align-items: flex-start;
}

.footer-logo-link {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.footer-logo-link:hover {
  opacity: 0.85;
}

.footer-brand-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 1.25rem;
}

.footer-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  max-width: 28rem;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5ec8e8;
  margin: 0;
}

.footer-highlight-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  flex: 1;
  min-width: 140px;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
    justify-content: center;
}

.footer-highlight-pill:hover {
  border-color: rgba(94, 200, 232, 0.35);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.highlight-num {
  font-size: 24px;
  font-weight: 800;
  color: #5ec8e8;
}

.highlight-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}

.footer-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 1;
  padding: 60px 0;
}

.footer-glass-card {
  height: 100%;
}

.footer-glass-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.footer-glass-card:hover {
  border-color: rgba(94, 200, 232, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.footer-card-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.title-dash {
  display: inline-block;
  width: 20px;
  height: 2px;
  background: #5ec8e8;
}

.footer-card-links li {
  margin-bottom: 0.65rem;
}

.footer-card-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.25s ease;
}

.footer-card-links a:hover {
  color: #76c043;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(94, 200, 232, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5ec8e8;
  flex-shrink: 0;
}

.footer-contact a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.25s ease;
}

.footer-contact a:hover {
  color: #5ec8e8;
}

.footer-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0 2rem;
  margin-top: 0.5rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: flex-end;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}

.footer-engineered {
  color: #5ec8e8;
  font-weight: 600;
}

.footer-legal a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.25s ease;
}

.footer-legal a:hover {
  color: #5ec8e8;
}
.footer-bar .pixie-text p{
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap:4px;}
  .footer-bar .pixie-text p a:hover {color: #5ec8e8;}
  .footer-bar p { margin:0 !important; }
.footer-bar .pixie-text svg {width: 15px; height: auto;}

.common-section {padding: 100px 0;}
.hero-scroll {display: none;}

.expect-stat,.roots-stat-num,.highlight-num {display: flex;align-items: anchor-center;}
.expect-stat .star,.roots-stat-num .star{font-size: 36px;}
.highlight-num span {  font-size: 18px;}

/*.section-title {font-size: 60px !important;}*/


/* ---------- Scroll animations ---------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background: var(--lime);
  border-radius: 4px;
}
.custom-container  {width: 100%; padding: 0 220px;}
.mobile-menu-btn {display: none;}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1){
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2){
    opacity:0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3){
    transform: translateY(-7px) rotate(-45deg);
}


.back-to-top { display: none; cursor: pointer; position: fixed; bottom: 40px; right: 30px; z-index: 99; }
.back-to-top a { display: flex; align-items: center; justify-content: center; height: 40px; width: 40px; border-radius: 12px; background: #8cc63f; text-align: center; padding: 4px; color: #073221; }


.inner-banner-section {position: relative; background:url(../images/privacy-policy-banner.png); height: 400px; background-size: cover; background-position: center; background-repeat: no-repeat;}
.inner-banner-section:before {content: ''; position: absolute; left: 0; right: 0; width: 100%; height: 100%; background:linear-gradient(180deg, rgba(4, 13, 6, 0.5) 0%, rgba(4, 13, 6, 0.78) 100%); }
.privacy-policy-features  h3 {color: #142714;font-size: 48px; margin-bottom: 30px;}

.privacy-policy-features p {font-size: 18px; margin-bottom: 15px;}
.privacy-policy-features h4 {font-size: 22px; color: #142714;margin-bottom: 15px;}
.privacy-policy-features ul {padding: 0; margin: 0; }
.privacy-policy-features ul li {font-size: 18px; margin-bottom: 15px; position: relative; padding-left: 20px;}
.privacy-policy-features ul li:before {content: ''; position: absolute; left: 0; top: 10px; height: 8px; width: 8px; background:#000; border-radius: 50%;}

.inner-banner-section .custom-container {position: absolute; bottom: 100px;}
.inner-banner-section .custom-container .title-box-banner h2 {color: #fff; font-size: 38px; margin-bottom: 0;}
