*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:         #e5484d;
  --green-dark:    #a4161a;
  --green-light:   #fdecec;
  --green-glow:    rgba(229,72,77,.18);
  --dark:        #1f1112;
  --mid:         #3a2627;
  --text:        #2e1a1b;
  --muted:       #7a4a4c;
  --border:      rgba(229,72,77,.2);
  --white:       #ffffff;
  --off-white:   #fdf6f6;
  --radius:      12px;
  --radius-lg:   20px;
  --nav-h:       72px;
  --font-head:   'Inter', sans-serif;
  --font-body:   'DM Sans', sans-serif;
}
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/*  NAVBAR  */
.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background .3s, box-shadow .3s, padding .3s;
}
.nav-wrap.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), 0 8px 32px rgba(0,0,0,.06);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 68px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin-left: auto;
  margin-top: 10px;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color .2s, background .2s;
  text-shadow: 0 1px 4px rgba(255,255,255,.6);
}
.nav-links a:hover { color: var(--muted); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.btn-ghost {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  padding: 9px 18px;
  border-radius: 9px;
  border: 1.5px solid var(--border);
  transition: border-color .2s, background .2s;
  background: transparent;
  cursor: pointer;
}
.btn-ghost:hover { border-color: var(--green); background: var(--green-light); }

.btn-primary-nav {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  padding: 9px 20px;
  border-radius: 9px;
  background: var(--green);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 2px 12px rgba(201, 74, 74, 0.25);
}
.btn-primary-nav:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 2px 12px rgba(201, 74, 74, 0.25);
  color: white;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: 6px;
  border: none;
  background: none;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-item-dropdown {
  position: relative;
}

.nav-link-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav-link-dropdown svg {
  width: 11px;
  height: 11px;
  transition: transform .25s;
}
.nav-item-dropdown.open .nav-link-dropdown svg {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
  padding: 16px;
  width: 520px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  z-index: 200;
}
.nav-item-dropdown.open .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: white;
  border-left: 1.5px solid var(--border);
  border-top: 1.5px solid var(--border);
}

.nav-dropdown-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.nav-dropdown-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  transition: background .2s, transform .2s;
  border: 1px solid transparent;
}
.nav-dropdown-card:hover {
  background: var(--off-white);
  border-color: var(--border);
  transform: translateY(-1px);
  color: var(--text);
  text-decoration: none;
}

.nav-dropdown-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--card-accent) 12%, white);
  border: 1px solid color-mix(in srgb, var(--card-accent) 20%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 7px;
  transition: background .2s;
}
.nav-dropdown-card:hover .nav-dropdown-icon {
  background: var(--card-accent);
}
.nav-dropdown-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter .2s;
}
.nav-dropdown-card:hover .nav-dropdown-icon img {
  filter: brightness(0) invert(1);
}
.nav-dropdown-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--card-accent);
  transition: stroke .2s;
}
.nav-dropdown-card:hover .nav-dropdown-icon svg {
  stroke: white;
}

.nav-dropdown-title {
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}
.nav-dropdown-desc {
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.4;
}

/*  MOBILE DROPDOWN  */
@media (max-width: 900px) {
 
  .nav-item-dropdown {
    width: 100%;
    display: flex;          
    flex-direction: column; 
    align-items: center;   
  }
 
  .nav-link-dropdown {
    width: 100%;
    text-align: center; 
    justify-content: center;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 15.5px;
    font-weight: 500;
    color: var(--dark);
  }
 
  .nav-dropdown {
    position: static !important;
    transform: none !important;
    width: 100%;
    border-radius: 12px;
    box-shadow: none;
    border: 1px solid var(--border);
    background: var(--off-white);
    padding: 0;
    margin-top: 0;
    margin-left: 0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transition: opacity .25s ease, max-height .3s ease;
    display: block !important;
  }
 
  .nav-dropdown::before {
    display: none !important;
  }
 
  .nav-item-dropdown.open .nav-dropdown {
    opacity: 1;
    max-height: 700px;
    pointer-events: all;
  }
 
  .nav-dropdown-inner {
    grid-template-columns: 1fr;
    gap: 2px;
  }
 
  .nav-dropdown-card {
    padding: 10px 12px;
  }
}
/*hero*/
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: var(--nav-h);
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('https://rmyt.lk/inventory/img/product-inventory.png');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(255,255,255,.40) 0%, transparent 65%),
    linear-gradient(to bottom, transparent 60%, rgba(243,250,247,.0) 100%),
    linear-gradient(
      105deg,
      rgba(255,255,255,.82) 0%,
      rgba(255,255,255,.65) 30%,
      rgba(255,255,255,.30) 55%,
      transparent 100%
    );
  z-index: 2;
}
.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 3;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,.75) 0%,
    transparent 100%
  );
  z-index: 4;
  pointer-events: none;
}
.hero-bg-blob.b1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(136,180,78,.22) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hero-bg-blob.b2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(136,180,78,.12) 0%, transparent 70%);
  bottom: 100px; left: -80px;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(136,180,78,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(136,180,78,.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 20%, transparent 100%);
  z-index: 3;
}

.hero-bg-lines {
  position: absolute;
  top: 0; right: 0;
  width: 480px; height: 480px;
  opacity: .35;
}

.hero-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 55px 24px 70px;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-left { display: flex; flex-direction: column; gap: 28px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px 6px 8px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
  width: fit-content;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  animation: fadeSlideUp .6s ease both;
}
.hero-badge-dot {
  width: 22px; height: 22px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hero-badge-dot svg { width: 11px; height: 11px; fill: white; }

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--dark);
  animation: fadeSlideUp .6s .1s ease both;
}
.hero-headline em {
  font-style: normal;
  color: var(--green);
  position: relative;
}
.hero-headline em::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 4px;
  background: var(--green);
  border-radius: 2px;
  opacity: .25;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 480px;
  font-weight: 400;
  animation: fadeSlideUp .6s .2s ease both;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeSlideUp .6s .3s ease both;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: white;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 2px 12px rgba(201, 74, 74, 0.25);
}
.btn-hero-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 2px 12px rgba(201, 74, 74, 0.25);
  color: white;
}
.btn-hero-primary svg { width: 16px; height: 16px; transition: transform .2s; }
.btn-hero-primary:hover svg { transform: translateX(3px); }

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  border: 1.5px solid rgba(0,0,0,.1);
  background: white;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.btn-hero-ghost:hover { border-color: var(--green); color: var(--green); }
.btn-hero-ghost svg { width: 15px; height: 15px; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeSlideUp .6s .4s ease both;
}
.hero-avatars {
  display: flex;
}
.hero-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px;
  font-size: 11px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  color: white;
}
.hero-avatar:first-child { margin-left: 0; }
.hero-avatar.a1 { background: #88B44E; }
.hero-avatar.a2 { background: #6a9038; }
.hero-avatar.a3 { background: #a8c870; }
.hero-avatar.a4 { background: #4a7028; }

.hero-trust-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}
.hero-trust-text strong { color: var(--text); font-weight: 600; }

.hero-right {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: fadeSlideRight .7s .15s ease both;
}

.product-cards-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.product-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-features {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  animation: fadeSlideUp .6s .35s ease both;
}
.hero-feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.70);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(25,149,112,.2);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--dark);
}
.hero-feature-pill svg {
  width: 13px;
  height: 13px;
  stroke: var(--green);
  flex-shrink: 0;
}

.product-card {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;

  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);

  box-shadow:
    0 8px 32px rgba(60, 80, 30, 0.10),
    0 1.5px 0 rgba(255, 255, 255, 0.80) inset; 

  transition: transform .25s, box-shadow .25s, border-color .25s, background .25s;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.50) 0%,
    rgba(255, 255, 255, 0.08) 40%,
    transparent 70%
  );
  pointer-events: none;
  transition: opacity .25s;
}

/* Hover green tint shimmer */
.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(136, 180, 78, 0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(136, 180, 78, 0.55);
  box-shadow:
    0 16px 48px rgba(60, 80, 30, 0.16),
    0 1.5px 0 rgba(255, 255, 255, 0.90) inset;
}
.product-card:hover::after { opacity: 1; }

.product-card-icon {
  width: 42px;
  height: 42px;
  background: rgba(136, 180, 78, 0.15);
  border: 1px solid rgba(136, 180, 78, 0.25);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;  
  padding: 6px;            
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background .25s, border-color .25s;
}

.product-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: none;            
  transition: filter .25s;
}

.product-card:hover .product-card-icon img {
  filter: brightness(0) invert(1);  
}
.product-card:hover .product-card-icon {
  background: var(--card-accent);
  border-color: var(--card-accent);
}

.product-card-icon svg { width: 20px; height: 20px; }
.product-card-icon svg path,
.product-card-icon svg rect,
.product-card-icon svg circle,
.product-card-icon svg polyline,
.product-card-icon svg line,
.product-card-icon svg polygon {
  stroke: var(--card-accent);
  transition: stroke .25s;
}
.product-card:hover .product-card-icon svg path,
.product-card:hover .product-card-icon svg rect,
.product-card:hover .product-card-icon svg circle,
.product-card:hover .product-card-icon svg polyline,
.product-card:hover .product-card-icon svg line,
.product-card:hover .product-card-icon svg polygon { stroke: white; }

.product-card-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -.2px;
  position: relative; z-index: 1;
}
.product-card-desc {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.6;
  position: relative; z-index: 1;
}
.product-card-arrow {
  margin-top: auto;
  font-size: 18px;
  color: var(--card-accent);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .25s, transform .25s;
  position: relative; z-index: 1;
}
.product-card:hover .product-card-arrow { opacity: 1; transform: translateX(0); }

.stats-bar {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  padding: 28px 24px;
  position: relative;
  z-index: 2;
}
.stats-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.stat-icon {
  width: 40px; height: 40px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.stat-icon svg { width: 18px; height: 18px; }
.stat-icon svg path, .stat-icon svg rect, .stat-icon svg polyline,
.stat-icon svg line, .stat-icon svg circle { stroke: var(--green); }
.stat-num { font-family: var(--font-head); font-size: 20px; font-weight: 800; color: var(--dark); }
.stat-label { font-size: 12px; color: var(--muted); font-weight: 400; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

@media (max-width: 900px) {
  .nav-wrap.menu-open {
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
    }

  .nav-links, .nav-actions { display: none; }
  .nav-links.open, .nav-actions.open { display: flex; }
  .nav-toggle { display: flex; }

  nav { flex-wrap: wrap; height: auto; padding: 14px 0; }

  .nav-links.open {
    order: 3;
    flex-direction: column;
    width: 100%;
    gap: 4px;
    padding: 10px 0 6px;
    border-top: 1px solid var(--border);
  }
  .nav-links.open a { border-radius: 10px; padding: 10px 16px; }
  .nav-actions.open {
    order: 4;
    width: 100%;
    padding: 10px 0 16px;
    flex-wrap: wrap;
  }
  .nav-actions.open .btn-ghost,
  .nav-actions.open .btn-primary-nav { flex: 1; text-align: center; justify-content: center; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 24px 40px;
  }
  .hero-headline { font-size: clamp(32px, 8vw, 48px); }
  .hero-right { order: 1; }
  .hero-stat-chip.chip-1 { top: -10px; left: -4px; }
  .hero-stat-chip.chip-2 { bottom: -10px; right: -4px; }

  .stats-bar-inner { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
  .stat-item { flex: 1; min-width: 140px; }
}

@media (max-width: 500px) {
  .product-cards-grid { grid-template-columns: 1fr; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .btn-hero-primary, .btn-hero-ghost { width: 100%; justify-content: center; }

  .product-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px) saturate(1.4);
    -webkit-backdrop-filter: blur(12px) saturate(1.4);
    box-shadow:
      0 4px 16px rgba(60, 80, 30, 0.08),
      0 1.5px 0 rgba(255, 255, 255, 0.90) inset;
  }

  .product-card:hover {
    background: rgba(255, 255, 255, 0.85);
  }
  .hero-features {
    gap: 8px;
  }
  .hero-bg-overlay {
    background: rgba(255,255,255,.62);
  }
}

.about-section {
  padding: 50px 24px;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
 
.about-section::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(136,180,78,.07) 0%, transparent 70%);
  pointer-events: none;
}
 
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
 
.about-images {
  position: relative;
}
 
.about-img-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 12px;
}
 
.about-img-main {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.about-img-main:hover img { transform: scale(1.03); }
.about-img-tall {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.about-img-tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.about-img-tall:hover img { transform: scale(1.04); }
 
.about-img-badge {
  position: absolute;
  bottom: 16px;
  left: 12px;
  right: 12px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(136,180,78,.2);
  border-radius: 10px;
  padding: 8px 12px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 7px;
}
.about-img-badge svg {
  width: 14px;
  height: 14px;
  stroke: var(--green);
  flex-shrink: 0;
}
 
.about-img-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
 
.about-img-sm {
  border-radius: 16px;
  overflow: hidden;
  flex: 1;
  min-height: 0;
}
.about-img-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.about-img-sm:hover img { transform: scale(1.05); }
 
.about-img-sm--accent {
  border: 2px solid var(--green-light);
}
 
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
 
.about-stat-icon {
  width: 40px;
  height: 40px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-stat-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--green);
}
.about-stat-num {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}
.about-stat-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
 
.about-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
 
.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green);
}
.about-eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
}
 
.about-heading {
  font-family: var(--font-head);
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--dark);
  margin: 0;
}
.about-heading em {
  font-style: normal;
  color: var(--green);
  position: relative;
}
.about-heading em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  opacity: .22;
}
 
.about-lead {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
  max-width: 480px;
}
 
/* Pillars */
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
}
 
.about-pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
}
 
.about-divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}
 
.about-pillar-icon {
  width: 44px;
  height: 44px;
  background: var(--green-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .25s;
}
.about-pillar:hover .about-pillar-icon {
  background: var(--green);
}
.about-pillar-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--green);
  transition: stroke .25s;
}
.about-pillar:hover .about-pillar-icon svg {
  stroke: white;
}
 
.about-pillar-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 6px;
  letter-spacing: -.2px;
}
.about-pillar-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}
 
/* CTA */
.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: white;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 12px;
  text-decoration: none;
  width: fit-content;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 2px 12px rgba(201, 74, 74, 0.25);
}
.about-cta:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 2px 12px rgba(201, 74, 74, 0.25);
  color: white;
}
.about-cta svg {
  width: 15px;
  height: 15px;
  transition: transform .2s;
}
.about-cta:hover svg { transform: translateX(3px); }
 
@media (max-width: 992px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .about-images {
    max-width: 540px;
    margin: 0 auto;
  }
  .about-stat-card {
    right: 0;
  }
}
 
@media (max-width: 576px) {
  .about-section { padding: 72px 20px; }
  .about-img-grid { grid-template-columns: 1.1fr 0.9fr; gap: 8px; }
  .about-stat-card { display: none; }
  .about-heading { font-size: 28px; }
  .about-cta { width: 100%; justify-content: center; }
}

/*  CONTACT SECTION  */
.contact-section {
  padding: 100px 24px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
 
.contact-section::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(136,180,78,.07) 0%, transparent 70%);
  pointer-events: none;
}
 
.contact-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}
 
.contact-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 580px;
}
 
.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green);
}
.contact-eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
}
 
.contact-heading {
  font-family: var(--font-head);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--dark);
  margin: 0;
}
.contact-heading em {
  font-style: normal;
  color: var(--green);
  position: relative;
}
.contact-heading em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0; right: 0;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  opacity: .22;
}
 
.contact-subhead {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
}
 
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}
 
.contact-card {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: transform .25s, box-shadow .25s, border-color .25s, background .25s;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 12px rgba(201, 74, 74, 0.25);
  border-color: var(--green);
  background: white;
}
 
.contact-card-icon {
  width: 52px;
  height: 52px;
  background: var(--green-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .25s;
}
.contact-card:hover .contact-card-icon {
  background: var(--green);
}
.contact-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--green);
  transition: stroke .25s;
}
.contact-card:hover .contact-card-icon svg {
  stroke: white;
}
 
.contact-card-label {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}
 
.contact-card-value {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  line-height: 1.6;
  transition: color .2s;
}
a.contact-card-value:hover {
  color: var(--green);
}
 
.contact-hours {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 24px 40px;
  width: 100%;
}
 
.contact-hours-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex: 1;
  padding: 0 24px;
}
 
.contact-hours-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}
 
.contact-hours-day {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--muted);
}
 
.contact-hours-time {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}
 
.contact-hours-closed {
  color: #e05c5c;
}
 
@media (max-width: 768px) {
  .contact-section { padding: 72px 20px; }
 
  .contact-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .contact-card {
    flex-direction: row;
    text-align: left;
    padding: 20px;
    gap: 16px;
  }
  .contact-card-icon { flex-shrink: 0; }
 
  .contact-hours {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }
  .contact-hours-divider {
    width: 100%;
    height: 1px;
  }
  .contact-hours-item {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    padding: 0;
  }
}
 
@media (max-width: 480px) {
  .contact-card {
    flex-direction: column;
    text-align: center;
  }
}

/*  FOOTER  */
.site-footer {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
 
.site-footer::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(136,180,78,.08) 0%, transparent 70%);
  pointer-events: none;
}
 
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 24px 56px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
}
 
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
 
.footer-logo img {
  height: 48px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: .9;
}
 
.footer-tagline {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,.45);
  margin: 0;
  max-width: 260px;
}
 
.footer-socials {
  display: flex;
  gap: 10px;
}
 
.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.45);
  transition: background .2s, color .2s, border-color .2s, transform .2s;
  text-decoration: none;
}
.footer-social:hover {
  background: var(--green);
  border-color: var(--green);
  color: white;
  transform: translateY(-2px);
}
.footer-social svg {
  width: 15px;
  height: 15px;
}
 
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
 
.footer-col-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin: 0;
  letter-spacing: .3px;
  position: relative;
  padding-bottom: 14px;
}
.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}
 
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: color .2s, padding-left .2s;
  display: inline-block;
}
.footer-links a:hover {
  color: var(--green);
  padding-left: 4px;
}
 
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
 
.footer-contact-icon {
  width: 32px;
  height: 32px;
  background: rgba(136,180,78,.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.footer-contact-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--green);
}
 
.footer-contact-list a,
.footer-contact-list span {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  line-height: 1.65;
  transition: color .2s;
}
.footer-contact-list a:hover { color: var(--green); }
 
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
}
 
.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
 
.footer-copy,
.footer-credit {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,.3);
  margin: 0;
}
.footer-copy a,
.footer-credit a {
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: color .2s;
}
.footer-copy a:hover,
.footer-credit a:hover { color: var(--green); }
 
.back-to-top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 2px 12px rgba(201, 74, 74, 0.25);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .3s, transform .3s, background .2s;
  z-index: 99;
  text-decoration: none;
}
.back-to-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top-btn:hover {
  background: var(--green-dark);
  color: white;
}
.back-to-top-btn svg {
  width: 18px;
  height: 18px;
}
 
@media (max-width: 992px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 28px;
  }
  .footer-tagline { max-width: 340px; }
}
 
@media (max-width: 576px) {
  .footer-inner {
    grid-template-columns: 1fr;
    padding: 52px 20px 40px;
    gap: 32px;
  }
  .footer-brand {
    flex-direction: column;
    gap: 16px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
  .back-to-top-btn {
    bottom: 20px;
    right: 20px;
  }
}
 
/*features section*/
.features-section {
  background: white;
  padding: 96px 24px;
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(25,149,112,.07) 0%, transparent 70%);
  pointer-events: none;
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.features-img-col  { order: 2; }
.features-content-col { order: 1; }

.features-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: visible;
}

.features-img-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  display: block;
  box-shadow: 0 24px 64px rgba(0,0,0,.10);
  transition: transform .5s ease;
}
.features-img-wrap:hover img {
  transform: scale(1.02);
}

.features-img-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(25,149,112,.14);
  animation: featureFloat 3s ease-in-out infinite;
}

.features-img-badge-icon {
  width: 40px; height: 40px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.features-img-badge-icon svg {
  width: 18px; height: 18px;
  stroke: var(--green);
}

.features-img-badge-num {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.3px;
  line-height: 1;
}
.features-img-badge-label {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 2px;
}

.features-content-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.features-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green);
}
.features-eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

.features-heading {
  font-family: var(--font-head);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--dark);
  margin: 0;
}
.features-heading em {
  font-style: normal;
  color: var(--green);
  position: relative;
}
.features-heading em::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  opacity: .22;
}

.features-lead {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
  max-width: 480px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.features-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  transition: background .2s;
}
.features-item:first-child { border-top: 1px solid var(--border); }

.features-item-icon {
  width: 44px; height: 44px;
  background: var(--green-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .25s;
}
.features-item:hover .features-item-icon {
  background: var(--green);
}
.features-item-icon svg {
  width: 20px; height: 20px;
  stroke: var(--green);
  transition: stroke .25s;
}
.features-item:hover .features-item-icon svg {
  stroke: white;
}

.features-item-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 2px;
}

.features-item-title {
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -.2px;
  line-height: 1.3;
}

.features-item-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
}

.features-cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.features-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: white;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 12px;
  text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 2px 12px rgba(201, 74, 74, 0.25);
}
.features-btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 2px 12px rgba(201, 74, 74, 0.25);
  color: white;
  text-decoration: none;
}
.features-btn-primary svg {
  width: 15px; height: 15px;
  transition: transform .2s;
}
.features-btn-primary:hover svg { transform: translateX(3px); }

.features-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 13px 22px;
  border-radius: 12px;
  text-decoration: none;
  border: 1.5px solid var(--border);
  background: white;
  transition: border-color .2s, color .2s, background .2s;
}
.features-btn-ghost:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-light);
  text-decoration: none;
}

@keyframes featureFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

@media (max-width: 992px) {
   .features-section { padding: 72px 24px; }
  .features-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .features-img-col  { max-width: 540px; margin: 0 auto; width: 100%; order: 1; }
  .features-content-col { order: 2; }                                             
  .features-img-badge { right: 0; }
}

@media (max-width: 576px) {
  .features-section { padding: 60px 20px; }
  .features-heading { font-size: 28px; }
  .features-img-badge { display: none; }
  .features-cta-row { flex-direction: column; }
  .features-btn-primary,
  .features-btn-ghost { width: 100%; justify-content: center; }
}

/*pricing section*/
.pv2-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 12.5px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; color: var(--green);
}
.pv2-eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--green); border-radius: 50%; flex-shrink: 0;
}

.pv2-hero {
  background: var(--off-white);
  padding: calc(var(--nav-h) + 64px) 24px 64px;
  text-align: center;
  position: relative; overflow: hidden;
}
.pv2-hero::before {
  content: ''; position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(25,149,112,.08) 0%, transparent 70%);
  pointer-events: none;
}
.pv2-hero-inner {
  max-width: 640px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  position: relative; z-index: 1;
}
.pv2-hero-headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800; line-height: 1.1; letter-spacing: -1.5px;
  color: var(--dark); margin: 0;
}
.pv2-hero-headline em {
  font-style: normal; color: var(--green); position: relative;
}
.pv2-hero-headline em::after {
  content: ''; position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 4px; background: var(--green); border-radius: 2px; opacity: .2;
}
.pv2-hero-sub {
  font-size: 16px; line-height: 1.75;
  color: var(--muted); max-width: 500px; margin: 0;
}

.pv2-toggle-wrap {
  display: flex; align-items: center; gap: 12px; margin-top: 4px;
}
.pv2-toggle-label {
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  color: var(--muted); display: flex; align-items: center; gap: 7px;
  transition: color .2s;
}
.pv2-toggle-label.active { color: var(--dark); font-weight: 600; }
.pv2-toggle {
  position: relative; width: 48px; height: 26px;
  background: var(--green-light); border: 1.5px solid var(--border);
  border-radius: 100px; cursor: pointer;
  transition: background .25s, border-color .25s;
  padding: 0; outline: none;
}
.pv2-toggle.yearly { background: var(--green); border-color: var(--green); }
.pv2-knob {
  position: absolute; top: 3px; left: 3px;
  width: 18px; height: 18px; background: var(--green);
  border-radius: 50%; transition: transform .25s, background .25s; pointer-events: none;
}
.pv2-toggle.yearly .pv2-knob { transform: translateX(22px); background: white; }
.pv2-save-badge {
  background: var(--green); color: white;
  font-size: 10.5px; font-weight: 700;
  padding: 2px 8px; border-radius: 100px; letter-spacing: .3px;
}

.pv2-plans {
  background: white;
  padding: 46px 0 56px;
  border-top: 1px solid var(--border);
}
.pv2-plans-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.pv2-swiper {
  width: 100%;
  overflow: hidden;
  padding: 16px 0 12px;
}
.pv2-swiper .swiper-wrapper { align-items: stretch; }
.pv2-swiper .swiper-slide {
  height: auto;
  display: flex;
  width: 240px !important;
  padding-top: 6px;
}

.pv2-card {
  width: 100%;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.pv2-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 12px rgba(201, 74, 74, 0.25);
  border-color: var(--green);
}
.pv2-card--pop {
  border-color: var(--green); background: white;
  box-shadow: 0 6px 32px rgba(25,149,112,.14);
}
.pv2-card--pop:hover { box-shadow: 0 16px 48px rgba(25,149,112,.2); }
.pv2-card--promo {
  border-color: #f59e0b; background: #fffbeb;
  box-shadow: 0 6px 32px rgba(245,158,11,.12);
}
.pv2-card--promo:hover {
  border-color: #d97706;
  box-shadow: 0 16px 48px rgba(245,158,11,.2);
}

.pv2-pop-ribbon {
  background: var(--green); color: white;
  font-family: var(--font-body); font-size: 10px; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase;
  text-align: center; padding: 6px 0;
}
.pv2-promo-ribbon {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  font-family: var(--font-body); font-size: 10px; font-weight: 700;
  letter-spacing: .7px; text-transform: uppercase;
  padding: 6px 0;
  display: flex; align-items: center; justify-content: center; gap: 5px;
}
.pv2-promo-ribbon svg { width: 11px; height: 11px; stroke: white; }

.pv2-card-head {
  padding: 18px 16px 14px;
  display: flex; flex-direction: column; gap: 8px;
  /* border-bottom: 1px solid var(--border); */
}

.pv2-plan-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pv2-plan-icon svg { width: 18px; height: 18px; }
.pv2-icon-1 { background: rgba(25,149,112,.12);; }
.pv2-icon-1 svg { stroke: var(--green); }
.pv2-icon-2 { background: rgba(25,149,112,.12); }
.pv2-icon-2 svg { stroke: var(--green); }
.pv2-icon-3 { background: rgba(25,149,112,.12); }
.pv2-icon-3 svg { stroke: var(--green); }
.pv2-icon-4 { background: rgba(25,149,112,.12); }
.pv2-icon-4 svg { stroke: var(--green); }
.pv2-icon-5 { background: rgba(123,104,238,.12); }
.pv2-icon-5 svg { stroke: var(--green); }
.pv2-icon-6 { background: rgba(25,149,112,.12); }
.pv2-icon-6 svg { stroke: var(--green); }
.pv2-icon-promo { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.pv2-icon-promo svg { stroke: #d97706; }

.pv2-plan-name {
  font-family: var(--font-head); font-size: 13.5px; font-weight: 700;
  color: var(--dark); letter-spacing: -.2px; line-height: 1.2;
}
.pv2-promo-was {
  font-family: var(--font-body); font-size: 11px;
  color: #92400e; opacity: .65; margin-top: -2px;
}
.pv2-promo-was s { text-decoration-color: #d97706; }

.pv2-plan-price { display: flex; align-items: baseline; gap: 2px; }
.pv2-currency {
  font-family: var(--font-body); font-size: 12px; font-weight: 600; color: var(--muted);
}
.pv2-amount {
  font-family: var(--font-head); font-size: 26px; font-weight: 800;
  color: var(--dark); letter-spacing: -1px; line-height: 1; transition: color .3s;
}
.pv2-card--pop .pv2-amount   { color: var(--green); }
.pv2-card--promo .pv2-amount { color: #d97706; }
.pv2-period { font-family: var(--font-body); font-size: 12px; color: var(--muted); }

.pv2-plan-desc {
  font-size: 11.5px; line-height: 1.55; color: var(--muted); margin: 0;
}

.pv2-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-size: 12.5px; font-weight: 600;
  padding: 9px 16px; border-radius: 9px; text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s, border-color .2s, color .2s;
  cursor: pointer; border: none;
}
.pv2-btn-primary {
  background: var(--green); color: white;
  box-shadow: 0 3px 12px rgba(25,149,112,.3);
}
.pv2-btn-primary:hover {
  background: var(--green-dark); transform: translateY(-1px);
  color: white; text-decoration: none;
}
.pv2-btn-outline {
  background: white; color: var(--green); border: 1.5px solid var(--border);
}
.pv2-btn-outline:hover {
  border-color: var(--green); background: var(--green-light);
  color: var(--green); text-decoration: none;
}
.pv2-btn-promo {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white; box-shadow: 0 3px 12px rgba(245,158,11,.3);
}
.pv2-btn-promo:hover {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  transform: translateY(-1px); color: white; text-decoration: none;
}

.pv2-list {
  list-style: none; padding: 14px 16px 18px; margin: 0;
  display: flex; flex-direction: column; gap: 7px; flex: 1;
}
.pv2-list li {
  font-size: 12px; color: var(--text);
  display: flex; align-items: center; gap: 7px;
}
.pv2-yes::before {
  content: '✓';
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--green-light); color: var(--green);
  font-size: 9px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pv2-no { color: var(--muted); }
.pv2-no::before {
  content: '✗';
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(0,0,0,.04); color: #ccc;
  font-size: 9px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pv2-card--promo .pv2-yes::before { background: #fef3c7; color: #d97706; }
li.promo-highlight { font-weight: 600; color: #d97706; font-size: 11.5px; }
li.promo-highlight::before { content: none !important; }

.pv2-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 24px;
}

.pv2-promo-banner {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  width: fit-content;
}
.pv2-promo-banner svg {
  width: 11px; height: 11px;
  stroke: white;
}
.pv2-pagination {
  display: flex; align-items: center; gap: 6px;
  position: static !important;
  justify-content: center;
}
.pv2-pagination .swiper-pagination-bullet {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--border); opacity: 1; margin: 0 !important;
  transition: width .3s, background .3s, border-radius .3s;
}
.pv2-pagination .swiper-pagination-bullet-active {
  width: 20px; border-radius: 4px; background: var(--green);
}
.pv2-nav-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: white; border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s, box-shadow .2s;
  box-shadow: 0 2px 8px rgba(0,0,0,.06); flex-shrink: 0;
}
.pv2-nav-btn:hover {
  background: var(--green); border-color: var(--green);
  box-shadow: 0 4px 14px rgba(25,149,112,.3);
}
.pv2-nav-btn svg { width: 15px; height: 15px; stroke: var(--dark); transition: stroke .2s; }
.pv2-nav-btn:hover svg { stroke: white; }

.pt-section {
  background: var(--off-white);
  padding: 96px 24px 80px;
  position: relative;
  overflow: hidden;
}
.pt-section::before {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(25,149,112,.06) 0%, transparent 70%);
  pointer-events: none;
}
 
.pt-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 1;
}
 
.pt-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.pt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--green);
}
.pt-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
}
.pt-heading {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--dark);
  margin: 0;
}
.pt-heading em {
  font-style: normal;
  color: var(--green);
  position: relative;
}
.pt-heading em::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  opacity: .18;
}
.pt-sub {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  max-width: 440px;
}
 
.pt-pills-wrap {
  display: none;
}
.pt-pills {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}
.pt-pills::-webkit-scrollbar { display: none; }
.pt-pill {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: white;
  color: var(--muted);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
  white-space: nowrap;
}
.pt-pill:hover { border-color: var(--green); color: var(--green); }
.pt-pill.active {
  background: var(--green);
  color: white;
  border-color: var(--green);
  transform: scale(1.02);
}
.pt-pill--pop  { border-color: var(--green); color: var(--green); }
.pt-pill--promo { border-color: #f59e0b; color: #d97706; }
.pt-pill--promo.active {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  border-color: #d97706;
}
 
.pt-table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: white;
  box-shadow: 0 2px 20px rgba(0,0,0,.04);
}
.pt-table-wrap::-webkit-scrollbar { height: 4px; }
.pt-table-wrap::-webkit-scrollbar-track { background: var(--off-white); }
.pt-table-wrap::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
 
.pt-table {
  width: 100%;
  min-width: 860px;
  border-collapse: separate;
  border-spacing: 0;
  font-family: var(--font-body);
  font-size: 13px;
}
 
.pt-table thead tr {
  background: var(--dark);
}
.pt-table thead th {
  padding: 16px 12px;
  text-align: center;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  letter-spacing: .7px;
  text-transform: uppercase;
  border: none;
  white-space: nowrap;
  position: sticky;
  top: 0;
  z-index: 2;
}
.pt-th-feat {
  text-align: left !important;
  color: rgba(255,255,255,.3) !important;
  width: 200px;
  min-width: 160px;
  padding-left: 20px !important;
  border-radius: 18px 0 0 0;
}
.pt-table thead th:last-child { border-radius: 0 18px 0 0; }
 
.pt-th-pop {
  background: var(--green) !important;
  color: white !important;
}
.pt-th-promo {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
  color: white !important;
}
.pt-pop-star {
  display: block;
  font-size: 9px;
  margin-bottom: 2px;
  opacity: .75;
  font-family: var(--font-body);
  letter-spacing: 0;
}
 
.pt-table tbody tr {
  transition: background .12s;
}
.pt-table tbody tr:not(.pt-group):hover {
  background: rgba(25,149,112,.03);
}
.pt-table tbody td {
  padding: 11px 12px;
  text-align: center;
  color: var(--text);
  border: none;
  border-bottom: 1px solid rgba(25,149,112,.07);
  vertical-align: middle;
  font-size: 13px;
}
.pt-table tbody tr.pt-last td {
  border-bottom: none;
}
 
.pt-feat {
  text-align: left !important;
  font-weight: 500;
  color: var(--dark) !important;
  padding-left: 20px !important;
  font-size: 13px;
}
 
.pt-pop {
  background: rgba(25,149,112,.04) !important;
  border-left: 1px solid rgba(25,149,112,.12) !important;
  border-right: 1px solid rgba(25,149,112,.12) !important;
  font-weight: 600;
  color: var(--green) !important;
}
 
.pt-promo {
  background: rgba(245,158,11,.04) !important;
  border-left: 1px solid rgba(245,158,11,.15) !important;
  border-right: 1px solid rgba(245,158,11,.15) !important;
  font-weight: 600;
  color: #d97706 !important;
}
 
.pt-price {
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
}
.pt-pop .pt-price   { color: var(--green); }
.pt-promo .pt-price { color: #d97706; }
 
.pt-group td {
  padding: 0 !important;
  border-bottom: none !important;
  border-top: 2px solid rgba(25,149,112,.12) !important;
}
.pt-group:first-child td { border-top: none !important; }
 
.pt-group-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  background: linear-gradient(90deg, var(--green-light) 0%, rgba(230,245,240,.25) 100%);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: .8px;
  text-transform: uppercase;
}
.pt-group-icon {
  width: 20px; height: 20px;
  background: white;
  border-radius: 5px;
  border: 1px solid rgba(25,149,112,.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pt-group-icon svg {
  width: 11px; height: 11px;
  stroke: var(--green);
}
 
.pt-yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: var(--green-light);
  border-radius: 50%;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}
.pt-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: rgba(0,0,0,.04);
  border-radius: 50%;
  color: #c8c8c8;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}
 
.pt-legend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.pt-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--muted);
}
.pt-legend-sep {
  width: 1px; height: 14px;
  background: var(--border);
  flex-shrink: 0;
}
.pt-legend-n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: rgba(25,149,112,.1);
  border-radius: 50%;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  font-family: var(--font-head);
}
 
@media (max-width: 900px) {
  .pt-section      { padding: 72px 20px 56px; }
  .pt-inner        { gap: 28px; }
  .pt-pills-wrap   { display: block; }
 
  .pt-table thead th[data-col],
  .pt-table tbody td[data-col] { display: none; }
  .pt-table thead th[data-col].pt-col-active,
  .pt-table tbody td[data-col].pt-col-active { display: table-cell; }
 
  .pt-group td { display: table-cell !important; }
 
  .pt-pop   { border-left: none !important; border-right: none !important; }
  .pt-promo { border-left: none !important; border-right: none !important; }
 
  .pt-table { min-width: 0; }
  .pt-table-wrap { border-radius: 14px; }
 
  .pt-feat { font-size: 12.5px; padding-left: 14px !important; }
  .pt-group-label { padding: 8px 14px; }
}

@media (max-width: 768px) {
  .pv2-nav-btn { display: none; }
  .pv2-plans   { padding: 40px 0 48px; }
}

@media (max-width: 540px) {
  .pv2-hero { padding: calc(var(--nav-h) + 40px) 20px 48px; }
  .pv2-hero-headline { letter-spacing: -1px; }

  .pv2-swiper .swiper-slide { width: 220px !important; }

  .pv2-tf { padding-left: 14px !important; font-size: 13px; }
  .pv2-sr td > * { padding: 9px 14px; }
  .pv2-table tbody td { padding: 12px 10px; }
  .pv2-table-heading { font-size: 26px; }
}

@media (max-width: 500px) {
  .pt-section  { padding: 56px 16px 48px; }
  .pt-heading  { font-size: 24px; letter-spacing: -.5px; }
  .pt-table tbody td { padding: 10px 10px; font-size: 12.5px; }
  .pt-feat { font-size: 12px; padding-left: 12px !important; }
  .pt-group-label { font-size: 10.5px; padding: 8px 12px; }
}



