/* ════════════════════════ TOKENS ════════════════════════ */
:root {
  --bg: #f2f7f4;
  --bg2: #e8f2ea;
  --surface: #fff;
  --surface2: #eef6f0;
  --border: #cce0d1;
  --border2: #b0cfb9;
  --t1: #0a1a0f;
  --t2: #1b3d25;
  --t3: #4a6e54;
  --t4: #8aab92;
  --green: #1a8c35;
  --greenl: #e3f5e7;
  --greend: #116628;
  --teal: #0b7a6e;
  --teall: #e2f4f2;
  --blue: #1a5fbf;
  --bluel: #e5eeff;
  --orange: #d4520a;
  --orangel: #fff1e8;
  --purple: #6236c0;
  --purplel: #f0ebff;
  --gold: #b8860b;
  --goldl: #fdf8e8;
  --gradient-hero: linear-gradient(145deg, #0b2318 0%, #0f3d26 40%, #0b4d3e 100%);
  --sh-sm: 0 1px 6px rgba(10, 50, 15, .07);
  --sh-md: 0 4px 24px rgba(10, 50, 15, .10);
  --sh-lg: 0 12px 48px rgba(10, 50, 15, .14);
  --sh-xl: 0 24px 80px rgba(10, 50, 15, .18);
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 32px;
  --fh: 'Outfit', sans-serif;
  --fb: 'Outfit', 'Noto Sans Devanagari', sans-serif;
  --nav: 70px;
  --tr: .26s cubic-bezier(.4, 0, .2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  font-size: 16px
}

body {
  font-family: var(--fb);
  background: var(--bg);
  color: var(--t1);
  line-height: 1.6;
  overflow-x: hidden
}

a {
  text-decoration: none;
  color: inherit
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none
}

img {
  max-width: 100%;
  display: block
}

/* ════ SCROLL PROGRESS ════ */
#prog {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--green), #5fcf7a, var(--teal));
  pointer-events: none;
  transition: width .1s
}

/* ════════════════════════ NAV ════════════════════════ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav);
  display: flex;
  align-items: center;
  padding: 0 clamp(1.2rem, 4vw, 3rem);
  gap: 2rem;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: var(--sh-sm);
  transition: box-shadow var(--tr);
}

#nav.sc {
  box-shadow: var(--sh-md)
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--fh);
  font-weight: 900;
  font-size: 1.08rem;
  color: var(--t1);
  white-space: nowrap;
  cursor: pointer
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #0b2318, var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 3px 14px rgba(26, 140, 53, .35)
}

.logo-text span {
  display: block
}

.logo-text .l1 {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--t1);
  letter-spacing: -.01em
}

.logo-text .l1 em {
  color: var(--green);
  font-style: normal
}

.logo-text .l2 {
  font-size: .6rem;
  font-weight: 600;
  color: var(--t4);
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-top: -1px
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0 auto;
  list-style: none
}

.nav-links li a {
  padding: 7px 16px;
  border-radius: 8px;
  font-size: .87rem;
  font-weight: 600;
  color: var(--t2);
  transition: all var(--tr);
  position: relative
}

.nav-links li a:hover {
  background: var(--greenl);
  color: var(--green)
}

.nav-links li a.on {
  color: var(--green)
}

.nav-links li a.on::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 16px;
  right: 16px;
  height: 2.5px;
  background: var(--green);
  border-radius: 2px
}

.nav-r {
  display: flex;
  align-items: center;
  gap: 10px
}

.lang-pill {
  display: flex;
  border-radius: 24px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  background: var(--surface2)
}

.lang-pill button {
  padding: 5px 13px;
  font-size: .77rem;
  font-weight: 700;
  color: var(--t3);
  transition: all var(--tr);
  line-height: 1
}

.lang-pill button.on {
  background: var(--green);
  color: #fff;
  border-radius: 22px
}

.nav-cta {
  padding: 9px 22px;
  border-radius: var(--r-sm);
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: .83rem;
  box-shadow: 0 2px 12px rgba(26, 140, 53, .3);
  transition: all var(--tr);
  white-space: nowrap
}

.nav-cta:hover {
  background: var(--greend);
  transform: translateY(-1px);
  box-shadow: 0 5px 20px rgba(26, 140, 53, .4)
}

.ham {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 9px;
  border: 1.5px solid var(--border);
  background: var(--surface2);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px
}

.ham span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--t2);
  border-radius: 2px;
  transition: all .3s
}

/* mobile nav */
#mnav {
  display: none;
  position: fixed;
  top: var(--nav);
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
  box-shadow: var(--sh-md)
}

#mnav.open {
  display: block
}

#mnav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px
}

#mnav ul li a {
  display: block;
  padding: 10px 14px;
  border-radius: 9px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--t2);
  transition: background .2s
}

#mnav ul li a:hover {
  background: var(--greenl);
  color: var(--green)
}

/* ════════════════════════ PAGE SYSTEM ════════════════════════ */
.page {
  display: none;
  padding-top: var(--nav)
}

.page.active {
  display: block
}

/* ════════════════════════ COMMON ════════════════════════ */
.wrap {
  max-width: 1160px;
  margin: 0 auto
}

section {
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.2rem, 4vw, 3rem)
}

.tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .6rem;
  font-family: var(--fh)
}

.sh {
  font-family: var(--fh);
  font-size: clamp(1.8rem, 3.6vw, 2.9rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--t1);
  margin-bottom: .7rem;
  letter-spacing: -.02em
}

.sh .g {
  color: var(--green)
}

.sh .o {
  color: var(--orange)
}

.sh .b {
  color: var(--blue)
}

.sh .p {
  color: var(--purple)
}

.sp {
  font-size: .97rem;
  color: var(--t3);
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: 2rem
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease
}

.reveal.vis {
  opacity: 1;
  transform: translateY(0)
}

.d1 {
  transition-delay: .1s
}

.d2 {
  transition-delay: .2s
}

.d3 {
  transition-delay: .3s
}

.d4 {
  transition-delay: .4s
}

.d5 {
  transition-delay: .5s
}

/* Buttons */
.btn-g {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r-sm);
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: .93rem;
  box-shadow: 0 4px 18px rgba(26, 140, 53, .28);
  transition: all .2s;
  font-family: var(--fh)
}

.btn-g:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26, 140, 53, .42);
  background: var(--greend)
}

.btn-ol {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r-sm);
  background: transparent;
  color: var(--t1);
  font-weight: 600;
  font-size: .93rem;
  border: 2px solid var(--border2);
  transition: all .2s;
  font-family: var(--fh)
}

.btn-ol:hover {
  border-color: var(--green);
  background: var(--greenl);
  color: var(--green)
}

.btn-w {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r-sm);
  background: #fff;
  color: var(--green);
  font-weight: 700;
  font-size: .93rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .14);
  transition: all .2s;
  font-family: var(--fh)
}

.btn-w:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2)
}

.btn-gh {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, .14);
  color: #fff;
  font-weight: 600;
  font-size: .93rem;
  border: 2px solid rgba(255, 255, 255, .4);
  transition: all .2s;
  font-family: var(--fh)
}

.btn-gh:hover {
  background: rgba(255, 255, 255, .24);
  transform: translateY(-2px)
}

/* ═══════════════════════════════════════
   PAGE 1 — HOME
═══════════════════════════════════════ */

/* Home Hero */
.home-hero {
  min-height: 100vh;
  padding-top: 0;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav) + 3rem) clamp(1.2rem, 4vw, 3rem) 5rem;
}

.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(26, 140, 53, .18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(11, 122, 110, .14) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  opacity: .06;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .5) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .5) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hh-wrap {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1
}



.hh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 140, 53, .2);
  border: 1px solid rgba(26, 140, 53, .35);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 1.4rem;
  width: fit-content;
  font-family: var(--fh);
  letter-spacing: .04em
}

.hh-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: blink 2s ease-in-out infinite;
  flex-shrink: 0
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

.hh-left h1 {
  font-family: var(--fh);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.04;
  color: #fff;
  letter-spacing: -.03em;
  margin-bottom: .9rem
}

.hh-left h1 .accent {
  color: #4ade80
}

.hh-left h1 .accent2 {
  color: #67e8f9
}

.hh-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .72);
  line-height: 1.85;
  max-width: 500px;
  margin-bottom: 2.4rem
}

.hh-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.hh-right {
  display: flex;
  flex-direction: column;
  gap: 16px
}

/* Product cards on hero */
.prod-pill {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--r-lg);
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  backdrop-filter: blur(12px);
  transition: all var(--tr);
  cursor: pointer;
}

.prod-pill:hover {
  background: rgba(255, 255, 255, .13);
  border-color: rgba(255, 255, 255, .25);
  transform: translateX(4px)
}

.prod-ic {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem
}

.prod-ic.e1 {
  background: linear-gradient(135deg, #1a8c35, #5a9e1c)
}

.prod-ic.e2 {
  background: linear-gradient(135deg, #1a5fbf, #0b7a6e)
}

.prod-ic.e3 {
  background: linear-gradient(135deg, #6236c0, #1a5fbf)
}

.prod-name {
  font-family: var(--fh);
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff
}

.prod-desc {
  font-size: .78rem;
  color: rgba(255, 255, 255, .6);
  margin-top: 2px;
  line-height: 1.45
}

.prod-arr {
  margin-left: auto;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, .35);
  transition: all var(--tr)
}

.prod-pill:hover .prod-arr {
  color: rgba(255, 255, 255, .8);
  transform: translateX(4px)
}

/* Home About strip */
.about-strip {
  background: var(--surface);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.2rem, 4vw, 3rem)
}

.about-strip-wrap {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center
}

.as-text .tag {
  color: var(--teal)
}

.as-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 1.5rem
}

.as-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 1rem 1.2rem;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: all var(--tr)
}

.as-feat:hover {
  box-shadow: var(--sh-md);
  border-color: var(--border2);
  transform: translateX(3px)
}

.as-feat-ico {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0
}

.af1 {
  background: var(--greenl)
}

.af2 {
  background: var(--teall)
}

.af3 {
  background: var(--bluel)
}

.as-feat strong {
  font-family: var(--fh);
  font-size: .88rem;
  font-weight: 800;
  display: block;
  margin-bottom: 2px;
  color: var(--t1)
}

.as-feat p {
  font-size: .81rem;
  color: var(--t3);
  line-height: 1.55
}

.as-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.as-stat {
  background: var(--surface2);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.6rem;
  text-align: center;
  transition: all var(--tr)
}

.as-stat:hover {
  box-shadow: var(--sh-md);
  border-color: var(--green);
  transform: translateY(-3px)
}

.as-stat .num {
  font-family: var(--fh);
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--green), #5a9e1c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1
}

.as-stat:nth-child(2) .num {
  background: linear-gradient(135deg, var(--teal), var(--blue));
  -webkit-background-clip: text;
  background-clip: text
}

.as-stat:nth-child(3) .num {
  background: linear-gradient(135deg, var(--orange), #f0a060);
  -webkit-background-clip: text;
  background-clip: text
}

.as-stat:nth-child(4) .num {
  background: linear-gradient(135deg, var(--purple), var(--blue));
  -webkit-background-clip: text;
  background-clip: text
}

.as-stat .lbl {
  font-size: .72rem;
  color: var(--t3);
  margin-top: 5px;
  font-weight: 600;
  font-family: var(--fh)
}

/* Solutions preview */
.sol-preview {
  background: var(--bg2)
}

.sol-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 2rem
}

.sp-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: all var(--tr);
  cursor: pointer;
  position: relative;
  overflow: hidden
}

.sp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--bar-c, linear-gradient(90deg, var(--green), #5a9e1c));
  transition: height .3s
}

.sp-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-5px);
  border-color: transparent
}

.sp-card:hover::before {
  height: 6px
}

.sp-card .sp-ico {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 1.2rem
}

.sp-card h3 {
  font-family: var(--fh);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--t1);
  margin-bottom: .5rem
}

.sp-card p {
  font-size: .85rem;
  color: var(--t3);
  line-height: 1.7;
  margin-bottom: 1.3rem
}

.sp-card .learn {
  font-family: var(--fh);
  font-size: .82rem;
  font-weight: 700;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap .2s
}

.sp-card:hover .learn {
  gap: 9px
}

/* ═══════════════════════════════════════
   PAGE 2 — SOLUTIONS
═══════════════════════════════════════ */
.sol-tabs-bar {
  position: sticky;
  top: var(--nav);
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0 clamp(1.2rem, 4vw, 3rem);
  box-shadow: var(--sh-sm);
}

.sol-tabs {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  gap: 0
}

.sol-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1.25rem 2rem;
  font-family: var(--fh);
  font-size: .88rem;
  font-weight: 700;
  color: var(--t3);
  border-bottom: 2.5px solid transparent;
  transition: all var(--tr);
  cursor: pointer;
  white-space: nowrap;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
}

.sol-tab:hover {
  color: var(--green);
  background: var(--bg)
}

.sol-tab.on {
  color: var(--green);
  border-bottom-color: var(--green);
  background: var(--greenl)
}

.sol-tab .st-ico {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem
}

.sol-content {
  display: none
}

.sol-content.on {
  display: block
}

/* ─── eSmartEnergy page ─── */
.ese-hero {
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.2rem, 4vw, 3rem);
  background: linear-gradient(145deg, #fff 0%, var(--bg) 55%, var(--bg2) 100%);
  position: relative;
  overflow: hidden;
}

.ese-hero::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -180px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 140, 53, .07) 0%, transparent 65%);
  pointer-events: none
}

.ese-grid {
  max-width: 860px;
  margin: 0 auto;
  display: block;
  position: relative;
  z-index: 1
}

.ese-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teall);
  border: 1px solid rgba(11, 122, 110, .2);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 1.2rem;
  width: fit-content;
  font-family: var(--fh)
}

.ese-left h1 {
  font-family: var(--fh);
  font-size: clamp(2.3rem, 4.5vw, 3.7rem);
  font-weight: 900;
  line-height: 1.06;
  color: var(--t1);
  margin-bottom: .5rem;
  letter-spacing: -.02em
}

.ese-left h1 .g {
  color: var(--green)
}

.ese-left h1 .o {
  color: var(--orange)
}

.ese-sub {
  font-size: .97rem;
  font-weight: 600;
  color: var(--t2);
  margin-bottom: .9rem;
  font-family: var(--fh)
}

.ese-desc {
  font-size: .97rem;
  color: var(--t3);
  line-height: 1.85;
  max-width: 470px;
  margin-bottom: 2.2rem
}

.ese-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.ese-right {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.ese-app-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.4rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  box-shadow: var(--sh-md);
  transition: all var(--tr)
}

.ese-app-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-3px)
}

.ese-app-ic {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--green), #5a9e1c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 14px rgba(26, 140, 53, .3)
}

.ese-app-nm {
  font-family: var(--fh);
  font-weight: 800;
  font-size: 1.08rem;
  color: var(--t1)
}

.ese-app-tg {
  font-size: .77rem;
  color: var(--t3);
  margin-top: 2px;
  line-height: 1.45
}

.srow {
  display: flex;
  gap: 8px;
  margin-top: 9px;
  flex-wrap: wrap
}

.sbtn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 13px;
  border-radius: 20px;
  font-size: .73rem;
  font-weight: 700;
  border: 1.5px solid var(--border2);
  color: var(--t2);
  background: var(--surface2);
  transition: all .2s;
  font-family: var(--fh)
}

.sbtn:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green)
}

.sbtn-ppt {
  border-color: rgba(212, 82, 10, .4);
  color: var(--orange);
  background: var(--orangel)
}

.sbtn-ppt:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange)
}

/* ─ PS section ─ */
.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start
}

.ps-col h3 {
  font-family: var(--fh);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 8px
}

.ps-list {
  display: flex;
  flex-direction: column;
  gap: 9px
}

.ps-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.ps-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 1.2rem;
  border-radius: var(--r-md);
  border: 1.5px solid var(--border);
  transition: all var(--tr);
  margin-bottom: 12px
}

.ps-item.prob {
  background: var(--bg);
  border-left: 5px solid var(--orange)
}

.ps-item.sol {
  background: var(--greenl);
  border-left: 5px solid var(--green)
}

.ps-item:hover {
  box-shadow: var(--sh-md);
  transform: translateX(4px)
}

.ps-ic {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px
}

.ps-item strong {
  font-family: var(--fh);
  font-size: .95rem;
  font-weight: 800;
  display: block;
  margin-bottom: 4px;
  color: var(--t1)
}

.ps-item p {
  font-size: .87rem;
  color: var(--t3);
  line-height: 1.6
}

/* ─ Featured In (100 Day Plan) ─ */
.featured-in {
  background: var(--bg2);
  padding: clamp(4rem, 8vw, 6rem) clamp(1.2rem, 4vw, 3rem)
}

.ap-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center
}

.ap-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--border2);
  border-radius: 30px;
  padding: 8px 20px;
  font-size: .8rem;
  font-weight: 800;
  color: var(--t2);
  margin-bottom: 1.5rem;
  font-family: var(--fh);
  box-shadow: var(--sh-sm)
}

.ap-quote {
  font-size: 1.05rem;
  color: var(--t2);
  line-height: 1.8;
  font-style: italic;
  padding: 1.5rem 2rem;
  border-left: 5px solid var(--green);
  background: var(--greenl);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin: 1.8rem 0;
  font-family: var(--fh);
  position: relative
}

.ap-quote::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 3rem;
  color: rgba(26, 140, 53, .1);
  font-family: serif
}

.ap-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.8rem
}

.ap-meta-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(26, 140, 53, .3)
}

.ap-meta-text strong {
  display: block;
  font-family: var(--fh);
  font-size: .95rem;
  font-weight: 800;
  color: var(--t1)
}

.ap-meta-text span {
  font-size: .82rem;
  color: var(--t3);
  font-weight: 600
}

.ap-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.ap-visual {
  position: relative
}

.li-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  transition: all .3s
}

.li-card:hover {
  transform: translateY(-8px)
}

.li-header {
  background: linear-gradient(135deg, #0077b5, #00a0dc);
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px
}

.li-header span {
  font-family: var(--fh);
  font-size: .92rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: .02em
}

.li-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 1.2rem
}

.li-img-wrap {
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg2);
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  position: relative
}

.li-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s
}

.li-img-wrap:hover img {
  transform: scale(1.08)
}

.li-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, .6));
  padding: 8px 12px;
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  font-family: var(--fh)
}

.li-body {
  padding: 0 1.5rem 1.5rem
}

.li-body p {
  font-size: .88rem;
  color: var(--t3);
  line-height: 1.7;
  margin-bottom: 1rem
}

.li-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.li-tag {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 700;
  background: var(--surface2);
  color: var(--t2);
  border: 1px solid var(--border);
  font-family: var(--fh)
}

.li-tag.li-tg {
  background: var(--greenl);
  color: var(--green);
  border-color: rgba(26, 140, 53, .2)
}

/* ─ How It Works ─ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--green), #5a9e1c, var(--teal), var(--green));
  opacity: .25;
  z-index: 0
}

.step-card {
  text-align: center;
  padding: 1.4rem 1rem;
  position: relative;
  z-index: 1
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #5a9e1c);
  color: #fff;
  font-family: var(--fh);
  font-size: 1.1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .9rem;
  box-shadow: 0 4px 16px rgba(26, 140, 53, .3)
}

.step-icon {
  font-size: 1.5rem;
  margin-bottom: .5rem
}

.step-card h4 {
  font-family: var(--fh);
  font-size: .92rem;
  font-weight: 800;
  color: var(--t1);
  margin-bottom: .35rem
}

.step-card p {
  font-size: .8rem;
  color: var(--t3);
  line-height: 1.6
}

/* ─ Features Tabs ─ */
.ftabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 2rem
}

.ftab {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 20px;
  border-radius: 40px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  font-family: var(--fh);
  font-size: .83rem;
  font-weight: 700;
  color: var(--t3);
  cursor: pointer;
  transition: all var(--tr);
  white-space: nowrap
}

.ftab .ftico {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  background: var(--surface2);
  transition: background var(--tr)
}

.ftab:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--greenl)
}

.ftab.on {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 18px rgba(26, 140, 53, .28)
}

.ftab.on .ftico {
  background: rgba(255, 255, 255, .2)
}

.fpanel {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  box-shadow: var(--sh-sm);
  min-height: 320px;
  position: relative;
  overflow: hidden
}

.fpanel::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--greenl) 0%, transparent 70%);
  pointer-events: none
}

.fp-left {
  position: relative;
  z-index: 1
}

.fp-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 13px;
  border-radius: 20px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  font-family: var(--fh)
}

.fp-icon-big {
  width: 68px;
  height: 68px;
  border-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  margin-bottom: 1.1rem;
  box-shadow: var(--sh-sm)
}

.fp-left h3 {
  font-family: var(--fh);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--t1);
  margin-bottom: .6rem
}

.fp-left p {
  font-size: .93rem;
  color: var(--t3);
  line-height: 1.8;
  margin-bottom: 1.3rem
}

.fp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px
}

.fp-tag {
  padding: 3px 11px;
  border-radius: 20px;
  font-size: .69rem;
  font-weight: 700;
  background: var(--surface2);
  color: var(--t2);
  border: 1px solid var(--border);
  font-family: var(--fh)
}

.fp-right {
  position: relative;
  z-index: 1
}

.fv-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.3rem;
  box-shadow: var(--sh-sm)
}

.fv-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.1rem;
  padding-bottom: .85rem;
  border-bottom: 1px solid var(--border)
}

.fv-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0
}

.fv-title {
  font-family: var(--fh);
  font-size: .88rem;
  font-weight: 800;
  color: var(--t1)
}

.fv-sub {
  font-size: .7rem;
  color: var(--t3);
  margin-top: 1px
}

.fv-rows {
  display: flex;
  flex-direction: column;
  gap: 7px
}

.fv-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xs)
}

.fv-rl {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  color: var(--t2);
  font-weight: 500
}

.fv-badge {
  padding: 3px 10px;
  border-radius: 12px;
  font-size: .67rem;
  font-weight: 800;
  white-space: nowrap;
  font-family: var(--fh)
}

.fvg {
  background: var(--greenl);
  color: var(--green)
}

.fvo {
  background: var(--orangel);
  color: var(--orange)
}

.fvt {
  background: var(--teall);
  color: var(--teal)
}

.fvn {
  background: var(--surface2);
  color: var(--t3)
}

.feat-content {
  display: none
}

.feat-content.on {
  display: grid;
  animation: ftIn .32s ease both
}

@keyframes ftIn {
  from {
    opacity: 0;
    transform: translateY(10px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* ─ Data Band ─ */
.data-band {
  background: linear-gradient(140deg, var(--green) 0%, #0f6e52 60%, var(--teal) 100%);
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.2rem, 4vw, 3rem);
}

.data-band .tag {
  color: rgba(255, 255, 255, .7)
}

.data-band .sh {
  color: #fff
}

.data-band .sp {
  color: rgba(255, 255, 255, .8);
  margin-bottom: 2.5rem
}

.dgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  gap: 14px
}

.dtile {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--r-md);
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: all .2s
}

.dtile:hover {
  background: rgba(255, 255, 255, .2);
  transform: translateY(-3px)
}

.dtile .big {
  font-family: var(--fh);
  font-size: 1.85rem;
  font-weight: 900;
  color: #fff;
  line-height: 1
}

.dtile .lbl {
  font-size: .77rem;
  color: rgba(255, 255, 255, .8);
  margin-top: 5px;
  font-family: var(--fh);
  font-weight: 500
}

/* ─ Impact ─ */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px
}

.imp-card {
  text-align: center;
  padding: 2.2rem 1.3rem;
  border: 2px solid var(--border);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  transition: all var(--tr)
}

.imp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), #5a9e1c)
}

.imp-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--orange), #f0a060)
}

.imp-card:nth-child(3)::before {
  background: linear-gradient(90deg, var(--teal), #5a9e1c)
}

.imp-card:nth-child(4)::before {
  background: linear-gradient(90deg, #5a9e1c, var(--green))
}

.imp-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
  border-color: var(--green)
}

.imp-num {
  font-family: var(--fh);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: .35rem;
  background: linear-gradient(135deg, var(--green), #5a9e1c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.imp-card:nth-child(2) .imp-num {
  background: linear-gradient(135deg, var(--orange), #f0a060);
  -webkit-background-clip: text;
  background-clip: text
}

.imp-card:nth-child(3) .imp-num {
  background: linear-gradient(135deg, var(--teal), #5a9e1c);
  -webkit-background-clip: text;
  background-clip: text
}

.imp-card:nth-child(4) .imp-num {
  background: linear-gradient(135deg, #5a9e1c, var(--green));
  -webkit-background-clip: text;
  background-clip: text
}

.imp-label {
  font-family: var(--fh);
  font-size: .97rem;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: .35rem
}

.imp-desc {
  font-size: .79rem;
  color: var(--t3);
  line-height: 1.5
}

/* ─ Tech ─ */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem
}

.tech-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.7rem;
  transition: all var(--tr);
  position: relative;
  overflow: hidden
}

.tech-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), #5a9e1c);
  transform: scaleX(0);
  transition: transform .35s;
  transform-origin: left
}

.tech-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-4px)
}

.tech-card:hover::after {
  transform: scaleX(1)
}

.tc-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  margin-bottom: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem
}

.tc1 {
  background: var(--greenl)
}

.tc2 {
  background: var(--teall)
}

.tc3 {
  background: var(--bluel)
}

.tc4 {
  background: var(--goldl)
}

.tech-card h4 {
  font-family: var(--fh);
  font-size: .95rem;
  font-weight: 800;
  margin-bottom: .45rem;
  color: var(--t1)
}

.tech-card p {
  font-size: .82rem;
  color: var(--t3);
  line-height: 1.65
}

/* ─ Screenshots ─ */
.desktop-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 1rem 0 1.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent
}

.desktop-scroll::-webkit-scrollbar {
  height: 4px
}

.desktop-scroll::-webkit-scrollbar-track {
  background: var(--border)
}

.desktop-scroll::-webkit-scrollbar-thumb {
  background: var(--green);
  border-radius: 2px
}

.ds-frame {
  flex-shrink: 0;
  scroll-snap-align: start;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: var(--sh-lg);
  transition: transform .3s;
  width: min(700px, 87vw)
}

.ds-frame:hover {
  transform: translateY(-4px) scale(1.01)
}

.ds-frame img {
  width: 100%;
  display: block
}

.ds-caption {
  font-family: var(--fh);
  font-size: .77rem;
  font-weight: 700;
  color: var(--t3);
  text-align: center;
  margin-top: .55rem;
  letter-spacing: .03em
}

/* ─── eFileSecure / eINOUT styles ─── */
.efs-hero,
.ein-hero {
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.2rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
}

/* ════════════════════════ FOOTER ════════════════════════ */
footer {
  background: var(--t1);
  color: rgba(255, 255, 255, .65);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.2rem, 4vw, 3rem) 1.5rem
}

.fgrid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem
}

.fb .fl {
  font-family: var(--fh);
  font-weight: 900;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: .7rem;
  display: flex;
  align-items: center;
  gap: 9px
}

.fb .fl .fi {
  width: 33px;
  height: 33px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--green), #5a9e1c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem
}

.fb p {
  font-size: .81rem;
  line-height: 1.75;
  margin-bottom: 1rem
}

.fc h5 {
  font-family: var(--fh);
  font-size: .73rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase
}

.fc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px
}

.fc ul li a {
  font-size: .81rem;
  color: rgba(255, 255, 255, .55);
  transition: color .2s;
  cursor: pointer
}

.fc ul li a:hover {
  color: #4ade80
}

.fbot {
  max-width: 1160px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .75rem;
  flex-wrap: wrap;
  gap: 10px
}

.fbot a {
  color: #4ade80
}

/* ════════════════════════ WHATSAPP ════════════════════════ */
#wa-btn {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .5);
  transition: all .2s;
  cursor: pointer;
  border: none;
}

#wa-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37, 211, 102, .65)
}

.wa-tip {
  position: absolute;
  right: 66px;
  background: var(--t1);
  color: #fff;
  font-family: var(--fh);
  font-size: .75rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s
}

#wa-btn:hover .wa-tip {
  opacity: 1
}

/* ════════════════════════ ADVANTAGE TABLE ════════════════════════ */
.at-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin-top: 1.8rem;
  border-radius: var(--r-md);
  border: 1.5px solid var(--border);
  background: var(--surface);
  box-shadow: var(--sh-md);
}

.at-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--fh);
}

.at-table th {
  background: var(--bg2);
  color: var(--t1);
  font-weight: 800;
  text-align: left;
  padding: 1rem 1.25rem;
  font-size: .82rem;
  border-bottom: 2px solid var(--border);
  text-transform: uppercase;
  letter-spacing: .06em
}

.at-table td {
  padding: 1.25rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  font-size: .92rem;
  color: var(--t2);
  line-height: 1.6;
}

.at-table tr:last-child td {
  border-bottom: none;
}

.at-table tr {
  transition: all .2s
}

.at-table tr:hover {
  background: var(--greenl)
}

.at-f-nm {
  font-weight: 800;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem
}

.at-f-nm .at-ic {
  font-size: 1.4rem;
  opacity: .9
}

.at-val strong {
  color: var(--t1);
  font-weight: 800;
  display: block;
  margin-bottom: 4px
}

/* ════════════════════════ RESPONSIVE ════════════════════════ */
@media(max-width:980px) {

  .hh-wrap,
  .ese-grid,
  .as-text,
  .ps-grid,
  .ps-list-grid,
  .steps-grid,
  .fpanel {
    grid-template-columns: 1fr !important
  }

  .hh-right,
  .fp-right {
    display: none
  }

  .hh-left h1 {
    font-size: 2.6rem
  }

  .nav-links {
    display: none
  }

  .ham {
    display: flex
  }

  .fgrid {
    grid-template-columns: 1fr 1fr
  }

  .steps-grid::before {
    display: none
  }

  .sol-preview-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:600px) {
  .hh-left h1 {
    font-size: 2rem
  }

  .fgrid {
    grid-template-columns: 1fr
  }

  .fbot {
    flex-direction: column;
    text-align: center
  }

  .at-table {
    min-width: 600px;
  }
}

/* ════════════════════════ REAL SCREENS ════════════════════════ */
.real-screens {
  background: var(--bg);
  padding: clamp(4rem, 8vw, 6rem) clamp(1.2rem, 4vw, 3rem);
}

.rs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.rs-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: 1.5px solid var(--border);
  transition: all .3s;
  display: flex;
  flex-direction: column;
}

.rs-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-xl);
  border-color: var(--green);
}

.rs-img {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--bg2);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.rs-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.rs-card:hover .rs-img img {
  transform: scale(1.05);
}

.rs-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(10, 26, 15, .8);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: .65rem;
  font-weight: 800;
  font-family: var(--fh);
  letter-spacing: .05em;
  text-transform: uppercase;
  z-index: 2;
}

.rs-body {
  padding: 1.8rem;
  flex-grow: 1;
}

.rs-body h4 {
  font-family: var(--fh);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--t1);
  margin-bottom: .6rem;
}

.rs-body p {
  font-size: .9rem;
  color: var(--t3);
  line-height: 1.7;
}

/* Feature Panel Image Overlay */
.fp-img-wrap {
  width: 100%;
  height: 100%;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--sh-lg);
  background: var(--surface);
}

.fp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─ Mini CTA ─ */
.mini-cta {
  padding: 3rem clamp(1.2rem, 4vw, 3rem);
  background: var(--bg2)
}

.mini-cbox {
  max-width: 1160px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--t1), var(--green));
  border-radius: var(--r-xl);
  padding: 3.5rem 2.5rem;
  text-align: center;
  color: #fff;
  box-shadow: var(--sh-xl);
  position: relative;
  overflow: hidden;
}

.mini-cbox::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, .1) 0%, transparent 70%);
}

.mini-cbox h2 {
  font-family: var(--fh);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1
}

.mini-cbox p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .8);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 1
}

.mini-cbtns {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1
}

/* ════════════════════════ CONTACT PAGE ════════════════════════ */
#page-contact {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg);
  min-height: 80vh;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-sidebar {
  position: sticky;
  top: 100px;
}

.contact-cards {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.c-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 1.8rem;
  display: flex;
  gap: 1.5rem;
  border: 1.5px solid var(--border);
  box-shadow: var(--sh-md);
  transition: all .3s;
}

.c-card:hover {
  transform: translateX(8px);
  border-color: var(--green);
  box-shadow: var(--sh-lg);
}

.cc-icon {
  width: 52px;
  height: 52px;
  background: var(--greenl);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.cc-info h5 {
  font-family: var(--fh);
  font-size: 1rem;
  font-weight: 800;
  color: var(--t1);
  margin-bottom: .3rem;
}

.cc-info p {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: .2rem;
}

.cc-info span {
  font-size: .8rem;
  color: var(--t3);
  font-weight: 500;
}

/* Form Card */
.contact-form-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 5vw, 4rem);
  box-shadow: var(--sh-xl);
  border: 1.5px solid var(--border);
}

.contact-form-card h3 {
  font-family: var(--fh);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--t1);
  margin-bottom: .7rem;
}

.contact-form-card>p {
  color: var(--t3);
  margin-bottom: 2.5rem;
  font-size: .95rem;
}

.c-form {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.form-group label {
  font-family: var(--fh);
  font-size: .8rem;
  font-weight: 800;
  color: var(--t1);
  letter-spacing: .02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 1rem 1.2rem;
  font-family: inherit;
  font-size: .95rem;
  color: var(--t1);
  transition: all .2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 4px var(--greenl);
}

.btn-submit {
  background: linear-gradient(135deg, var(--t1), var(--green));
  color: #fff;
  border: none;
  padding: 1.1rem 2rem;
  border-radius: var(--r-md);
  font-family: var(--fh);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all .3s;
  margin-top: 1rem;
  width: 100%;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(11, 122, 110, .3);
  filter: brightness(1.1);
}

.btn-arr {
  transition: transform .3s;
}

.btn-submit:hover .btn-arr {
  transform: translateX(5px);
}

.form-note {
  font-size: .78rem;
  color: var(--t3);
  text-align: center;
  margin-top: 1rem;
}

.form-note a {
  color: var(--green);
  text-decoration: underline;
}

/* Adaptive Contact */
@media(max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-sidebar {
    position: static;
    text-align: center;
  }

  .contact-cards {
    flex-direction: column;
    align-items: center;
  }

  .c-card {
    width: 100%;
    max-width: 500px;
    text-align: left;
  }
}

@media(max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 2rem 1.5rem;
  }
}

/* ─── eFileSecure page styles ─── */
.efs-hero {
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.2rem, 4vw, 3rem);
  background: linear-gradient(145deg, #fff 0%, #f7f3ff 55%, #ece3ff 100%);
  position: relative;
  overflow: hidden;
}

.efs-hero::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -180px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(98, 54, 192, .07) 0%, transparent 65%);
  pointer-events: none
}

.efs-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purplel);
  border: 1px solid rgba(98, 54, 192, .2);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 1.2rem;
  width: fit-content;
  font-family: var(--fh)
}

.p {
  color: var(--purple) !important;
}

.tc-purple {
  background: var(--purplel) !important;
  color: var(--purple) !important;
}

.btn-p {
  background: var(--purple);
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-family: var(--fh);
  font-weight: 800;
  font-size: .95rem;
  display: inline-block;
  transition: all .3s;
  box-shadow: 0 4px 18px rgba(98, 54, 192, .25);
}

.btn-p:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(98, 54, 192, .35);
  filter: brightness(1.1);
}

.btn-arr {
  transition: transform .3s;
}

.btn-p:hover .btn-arr {
  transform: translateX(5px);
}

/* ─── eINOUT page styles ─── */
.ein-hero {
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.2rem, 4vw, 3rem);
  background: linear-gradient(145deg, #fff 0%, #f0f7ff 55%, #e1efff 100%);
  position: relative;
  overflow: hidden;
}

.ein-hero::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -180px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 95, 191, .07) 0%, transparent 65%);
  pointer-events: none
}

.ein-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bluel);
  border: 1px solid rgba(26, 95, 191, .2);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 1.2rem;
  width: fit-content;
  font-family: var(--fh)
}

.tc-blue {
  background: var(--bluel) !important;
  color: var(--blue) !important;
}

.btn-b {
  background: var(--blue);
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-family: var(--fh);
  font-weight: 800;
  font-size: .95rem;
  display: inline-block;
  transition: all .3s;
  box-shadow: 0 4px 18px rgba(26, 95, 191, .25);
}

.btn-b:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26, 95, 191, .35);
  filter: brightness(1.1);
}


/* ─── About Us page styles ─── */
.about-hero {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.2rem, 4vw, 3rem);
  background: linear-gradient(135deg, #fff 0%, var(--bg) 60%, var(--bg2) 100%);
  text-align: center;
}

.about-mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: -3rem;
  /* Overlap with hero */
  position: relative;
  z-index: 10;
}

.mv-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  box-shadow: var(--sh-md);
  transition: all var(--tr);
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
  border-color: var(--green);
}

.mv-ic {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--greenl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.mv-card h3 {
  font-family: var(--fh);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--t1);
}

.mv-card p {
  font-size: .95rem;
  color: var(--t3);
  line-height: 1.7;
}

@media(max-width: 768px) {
  .about-hero {
    padding-bottom: 5rem;
  }
}