/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #0A1A10;
  background: #fff;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============ VARIABLES ============ */
:root {
  --green: #00AA55;
  --green-dark: #008A44;
  --dark: #0F1F17;
  --light-tint: #F2FAF5;
  --text: #0A1A10;
  --muted: #4A6455;
  --border: #D4E8DC;
}

/* ============ LAYOUT ============ */
.v2-wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============ NAV ============ */
.v2-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 13px 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.v2-nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.v2-logo {
  font-size: 24px;
  font-weight: 700;
  color: #0A1A10;
  letter-spacing: -0.02em;
}
.v2-logo span { color: #0A1A10; }
.v2-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.v2-nav-links li a {
  font-size: 16px;
  font-weight: 500;
  color: #0A1A10;
  padding: 8px 17px;
  border-radius: 99px;
  border: 1px solid transparent;
  transition: all 0.18s;
  display: block;
}
.v2-nav-links li a:hover,
.v2-nav-links li a.active {
  color: rgba(0,0,0,0.45);
  border-color: rgba(0,0,0,0.15);
}
.v2-nav-cta {
  background: var(--green) !important;
  color: #fff !important;
  border-color: var(--green) !important;
  font-weight: 600 !important;
}
.v2-nav-cta:hover {
  background: var(--green-dark) !important;
  border-color: var(--green-dark) !important;
}

/* ============ NAV DROPDOWN ============ */
.v2-has-dropdown {
  position: relative;
}
/* transparent bridge fills the gap so the mouse never loses hover */
.v2-has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
}
.v2-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 226px;
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 6px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
  z-index: 200;
}
.v2-has-dropdown:hover .v2-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.v2-dropdown li a {
  display: block;
  padding: 9px 16px;
  font-size: 15px;
  font-weight: 500;
  color: #0A1A10;
  border-radius: 9px;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
}
.v2-dropdown li a:hover {
  color: rgba(0,0,0,0.45);
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.1);
}
.v2-dropdown li + li {
  margin-top: 2px;
}

/* ============ HERO (homepage) ============ */
.v2-hero {
  min-height: 100vh;
  background: linear-gradient(140deg, #0d1f15 0%, #1a3828 55%, #0b1c11 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.v2-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 65% 40%, rgba(0,170,85,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.v2-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 72px 0 56px;
}
.v2-hero-left .italic-line {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  line-height: 1.15;
  margin-bottom: 6px;
}
.v2-hero-left .bold-line {
  display: block;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #fff;
}
.v2-hero-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.v2-hero-right p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
}
.v2-pill-btn {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 11px 22px;
  border-radius: 99px;
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.18s;
  cursor: pointer;
}
.v2-pill-btn:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.45);
}
.v2-pill-btn.green {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.v2-pill-btn.green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}
.v2-pill-btn.light {
  border-color: var(--border);
  color: var(--text);
}
.v2-pill-btn.light:hover {
  background: var(--light-tint);
}

/* Hero image peek */
.v2-hero-peek {
  padding: 0 40px;
  max-width: 1280px;
  margin: 0 auto;
}
.v2-hero-frame {
  width: 100%;
  aspect-ratio: 16/6;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  border: 1px solid rgba(0,170,85,0.18);
  border-bottom: none;
  background: rgba(255,255,255,0.04);
  position: relative;
}
.v2-hero-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.v2-media-label {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
}

/* ============ ABOUT / STATS (homepage) ============ */
.v2-about {
  padding: 100px 0;
  background: #fff;
}
.v2-about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}
.v2-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 99px;
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}
.v2-about-text p {
  font-size: 21px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 28px;
}
.v2-stats {
  display: flex;
  flex-direction: column;
  gap: 52px;
  padding-top: 52px;
}
.v2-stat-num {
  font-size: 90px;
  font-weight: 800;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.04em;
}
.v2-stat-label {
  font-size: 15px;
  color: var(--muted);
  margin-top: 10px;
}

/* ============ SERVICES (homepage) ============ */
.v2-services {
  padding: 96px 0;
  background: var(--light-tint);
}
.v2-section-head {
  text-align: center;
  margin-bottom: 52px;
}
.v2-section-head .v2-tag { margin-bottom: 16px; }
.v2-section-head h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 600px;
  margin: 0 auto;
}
.v2-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.v2-card {
  background: #fff;
  border-radius: 14px;
  padding: 36px;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.v2-card:hover {
  box-shadow: 0 10px 36px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.v2-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}
.v2-card-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--green);
}
.v2-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0;
}
.v2-card p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}

/* ============ INDUSTRIES MARQUEE ============ */
.v2-marquee {
  overflow: hidden;
  padding: 44px 0;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.v2-marquee-track {
  display: flex;
  white-space: nowrap;
  animation: v2scroll 30s linear infinite;
}
.v2-marquee-track:hover { animation-play-state: paused; }
@keyframes v2scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.v2-marquee-item {
  display: inline-flex;
  align-items: center;
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  padding: 0 28px;
  flex-shrink: 0;
}
.v2-marquee-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  margin-left: 28px;
}
/* ============ HOW WE WORK (homepage) ============ */
.v2-how {
  padding: 96px 0;
  background: var(--light-tint);
}
.v2-how-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.v2-how-left h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 14px 0 20px;
}
.v2-how-left p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 32px;
}
.v2-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.v2-steps::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: var(--border);
}
.v2-step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  padding-bottom: 36px;
  position: relative;
}
.v2-step:last-child { padding-bottom: 0; }
.v2-step-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.v2-step-dot svg {
  width: 17px;
  height: 17px;
  color: var(--green);
}
.v2-step-body { padding-top: 9px; }
.v2-step-body h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.v2-step-body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

/* ============ VIDEO (homepage) ============ */
.v2-video {
  padding: 96px 0;
  background: #fff;
}
.v2-video-frame {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--light-tint);
  border-radius: 16px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.v2-video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--muted);
}
.v2-play {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}
.v2-play svg {
  width: 26px;
  height: 26px;
  color: #fff;
  margin-left: 3px;
}
.v2-video-placeholder span { font-size: 14px; }

/* ============ FOOTER ============ */
.v2-footer {
  background: var(--dark);
}
.v2-footer-cta {
  padding: 64px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.v2-footer-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.v2-footer-cta h2 {
  font-size: clamp(20px, 2.8vw, 34px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.v2-footer-cta p {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}
.v2-footer-body {
  padding: 60px 0;
}
.v2-footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 52px;
}
.v2-footer-photo {
  aspect-ratio: 4/3;
  max-width: 340px;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
}
.v2-footer-photo span {
  font-size: 12px;
  color: rgba(255,255,255,0.18);
}
.v2-footer-wordmark {
  font-size: clamp(52px, 9vw, 108px);
  font-weight: 800;
  color: #c0c0c0;
  letter-spacing: -0.04em;
  line-height: 1;
  text-align: right;
}
.v2-footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 36px;
}
.v2-footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 40px;
  margin-bottom: 36px;
}
.v2-footer-nav a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: color 0.18s;
}
.v2-footer-nav a:hover { color: #fff; }
.v2-footer-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 40px;
}
.v2-footer-contact a,
.v2-footer-contact span {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: color 0.18s;
}
.v2-footer-contact a:hover { color: #fff; }
.v2-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 13px;
  color: rgba(255,255,255,0.28);
}

/* ============ INNER PAGE HERO ============ */
.v2-inner-hero {
  background: linear-gradient(140deg, #0d1f15 0%, #1a3828 55%, #0b1c11 100%);
  padding: 140px 0 80px;
  position: relative;
}
.v2-inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,170,85,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.v2-inner-hero h1 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.15;
  max-width: 800px;
  margin-bottom: 20px;
  position: relative;
}
.v2-inner-hero .v2-lede {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  max-width: 680px;
  position: relative;
}
.v2-inner-hero .v2-hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  position: relative;
}

/* ============ INNER PAGE SECTIONS ============ */
.v2-section {
  padding: 80px 0;
}
.v2-section.tinted { background: var(--light-tint); }
.v2-section.white { background: #fff; }
.v2-section.bordered { border-top: 1px solid var(--border); }
.v2-section.tight { padding: 32px 0; }

.v2-section-title {
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.v2-lede {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
}
.v2-body-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 10px;
  display: block;
}

/* ============ GRID LAYOUTS ============ */
.v2-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.v2-grid-2.centered { align-items: center; gap: 56px; }
.v2-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.v2-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* ============ INNER CARDS ============ */
.v2-card-code {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 12px;
}
.v2-card h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-top: 8px;
}
.v2-card ul {
  padding-left: 20px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
}
.v2-inline-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 99px;
  border: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
  margin-top: 20px;
}

/* ============ MEDIA FRAME ============ */
.v2-media {
  width: 100%;
  aspect-ratio: 16/7;
  background: var(--light-tint);
  border-radius: 12px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
}
.v2-media-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}
.v2-media-inner svg { width: 40px; height: 40px; opacity: 0.4; }
.v2-media-inner span { font-size: 13px; }

/* ============ CTA BAND ============ */
.v2-cta {
  background: var(--dark);
  border-radius: 16px;
  padding: 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.v2-cta h2 {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.v2-cta p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
}

/* ============ CROSS LINKS ============ */
.v2-cross-links {
  font-size: 14px;
  color: var(--muted);
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.v2-cross-links a { color: var(--green); }
.v2-cross-links a:hover { text-decoration: underline; }

/* ============ SPEC STRIP ============ */
.v2-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  gap: 1px;
  background: var(--border);
}
.v2-spec {
  background: var(--light-tint);
  padding: 36px 40px;
}
.v2-spec-val {
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.v2-spec-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* ============ REPORT LIST ============ */
.v2-report-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 20px;
}
.v2-report-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text);
}
.v2-report-item:last-child { border-bottom: none; }
.v2-report-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--light-tint);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}

/* ============ TECH GRID (ergonomic page) ============ */
.v2-tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.v2-tech-visual { position: relative; }
.v2-tech-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--light-tint);
  border-radius: 12px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.v2-tech-photo .v2-media-inner { color: var(--muted); }
.v2-results-card {
  background: var(--dark);
  border-radius: 12px;
  padding: 24px;
  margin-top: 16px;
}
.v2-results-card h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.v2-results-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 0;
}
.v2-results-card li {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  list-style: none;
}

/* ============ PRICING ============ */
.v2-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
  align-items: start;
}
.v2-pricing-wrap { position: relative; padding-top: 14px; }
.v2-pricing-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 99px;
  white-space: nowrap;
}
.v2-pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
}
.v2-pricing-card.featured {
  background: var(--dark);
  border-color: var(--dark);
}
.v2-pricing-range {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 12px;
}
.v2-pricing-card.featured .v2-pricing-range { color: rgba(255,255,255,0.5); }
.v2-pricing-price {
  font-size: 48px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.v2-pricing-card.featured .v2-pricing-price { color: #fff; }
.v2-pricing-period {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.v2-pricing-card.featured .v2-pricing-period { color: rgba(255,255,255,0.5); }
.v2-pricing-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
  margin-bottom: 20px;
}
.v2-pricing-card.featured .v2-pricing-note { color: rgba(255,255,255,0.4); }
.v2-pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.v2-pricing-card.featured .v2-pricing-features { border-color: rgba(255,255,255,0.1); }
.v2-pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text);
}
.v2-pricing-card.featured .v2-pricing-features li { color: rgba(255,255,255,0.75); }
.v2-pricing-features li.unavailable { opacity: 0.4; }
.v2-pricing-features li svg { flex-shrink: 0; color: var(--green); }
.v2-pricing-card.featured .v2-pricing-features li svg { color: var(--green); }

/* ============ CONTACT FORM ============ */
.v2-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.v2-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.v2-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.v2-field input,
.v2-field textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.18s;
  -webkit-appearance: none;
}
.v2-field input:focus,
.v2-field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,170,85,0.08);
}
.v2-field textarea { resize: vertical; min-height: 120px; }
.v2-form-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
}
.v2-form-status {
  font-size: 14px;
  margin-top: 14px;
  min-height: 20px;
}
.v2-contact-card {
  background: var(--light-tint);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px;
}
.v2-contact-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.v2-contact-card > .v2-lede {
  margin-bottom: 4px;
}
.v2-email-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin: 16px 0 20px;
  transition: border-color 0.18s, color 0.18s;
  width: 100%;
  justify-content: center;
  background: #fff;
}
.v2-email-btn:hover { border-color: var(--green); color: var(--green); }
.v2-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.v2-contact-row:last-child { border-bottom: none; }
.v2-contact-row svg { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.v2-contact-row-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  display: block;
  margin-bottom: 3px;
}
.v2-contact-row-text { font-size: 14px; color: var(--text); line-height: 1.6; }
.v2-contact-row-text a { color: var(--green); }

/* ============ TEAM CARDS ============ */
.v2-team-role {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  margin: 4px 0 10px;
}

/* ============ PROCESS LIST (IoT page) ============ */
.v2-process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
}
.v2-process-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding-bottom: 32px;
}
.v2-process-item:last-child { padding-bottom: 0; }
.v2-process-num-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light-tint);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}
.v2-process-body h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  padding-top: 8px;
}
.v2-process-body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 880px) {
  .v2-hero-grid { grid-template-columns: 1fr; gap: 32px; padding: 48px 0 40px; }
  .v2-about-grid { grid-template-columns: 1fr; gap: 40px; }
  .v2-stats { flex-direction: row; gap: 40px; padding-top: 0; }
  .v2-cards { grid-template-columns: 1fr; }
  .v2-how-grid { grid-template-columns: 1fr; gap: 48px; }
  .v2-footer-main { grid-template-columns: 1fr; }
  .v2-footer-wordmark { text-align: left; }
  .v2-footer-cta-row { flex-direction: column; align-items: flex-start; }
  .v2-footer-nav { grid-template-columns: 1fr 1fr; }
  .v2-footer-contact { grid-template-columns: 1fr; }
  .v2-nav-links { display: none; }
  .v2-wrap { padding: 0 20px; }
  .v2-grid-2 { grid-template-columns: 1fr; gap: 28px; }
  .v2-grid-2.centered { gap: 28px; }
  .v2-grid-3 { grid-template-columns: 1fr; }
  .v2-grid-4 { grid-template-columns: 1fr 1fr; }
  .v2-tech-grid { grid-template-columns: 1fr; }
  .v2-pricing-grid { grid-template-columns: 1fr; }
  .v2-form-grid { grid-template-columns: 1fr; }
  .v2-specs { grid-template-columns: 1fr; }
  .v2-cta { flex-direction: column; align-items: flex-start; padding: 36px; }
  .v2-inner-hero { padding: 120px 0 60px; }
}
@media (max-width: 560px) {
  .v2-grid-4 { grid-template-columns: 1fr; }
}
