/* ═══════════════════════════════════════════════════════════
   Lanna Mountain — Shared Stylesheet
   ═══════════════════════════════════════════════════════════ */

/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0D1F13;
  --bg2:       #112318;
  --card:      #142D1A;
  --border:    #1E4228;
  --green:     #1A7A3C;
  --green-lt:  #22A050;
  --green-dim: #145F2E;
  --white:     #FFFFFF;
  --muted:     #7FAF8A;
  --text:      #DFF0E5;
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Lato', sans-serif;
  --radius:    8px;
  --max:       1160px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  letter-spacing: 0.01em;
}
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-lt); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--green); color: var(--green-lt); }
.btn-white {
  background: var(--white);
  color: var(--bg);
  font-family: var(--font-head);
  font-weight: 700;
}
.btn-white:hover { background: #e8f5ec; transform: translateY(-1px); }

/* ── Nav ──────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  padding: 0 24px;
}
nav.scrolled {
  background: rgba(13, 31, 19, 0.96);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--green-lt); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.nav-social { display: flex; gap: 6px; align-items: center; margin-right: 4px; }
.nav-social a { display: flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 6px; color: rgba(255,255,255,0.65); transition: color 0.2s, background 0.2s; }
.nav-social a:hover { color: var(--white); background: rgba(255,255,255,0.12); }
.nav-social svg { width: 15px; height: 15px; fill: currentColor; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;          /* flush to parent — no gap to fall through */
  left: 50%;
  transform: translateX(-50%);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 8px 8px; /* top padding recreates the visual gap while staying hoverable */
  min-width: 200px;
  list-style: none;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block;
  padding: 10px 14px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  border-radius: 6px;
  transition: all 0.15s;
  white-space: nowrap;
}
.dropdown-menu li a:hover {
  background: rgba(26,122,60,0.15);
  color: var(--white);
}

.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: rgba(13, 31, 19, 0.98);
  backdrop-filter: blur(12px);
  z-index: 99;
  padding: 32px 24px;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--muted);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--white); }
.mobile-nav .btn { margin-top: 24px; justify-content: center; }

/* ── Page Hero (inner pages) ──────────────────────── */
.page-hero {
  padding: 140px 24px 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -300px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(26,122,60,0.14) 0%, transparent 70%);
  pointer-events: none;
}
/* About page gets the mountain photo as a subtle background */
.page-hero.mountain-bg {
  background-image: url('mountain%20pic.jpg');
  background-size: cover;
  background-position: center 55%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 0;
}
.page-hero.mountain-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 31, 19, 0.80) 0%,
    rgba(13, 31, 19, 0.60) 50%,
    rgba(13, 31, 19, 0.88) 100%
  );
  pointer-events: none;
  z-index: 0;
}
.page-hero.mountain-bg .page-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* Stats docked to bottom of hero */
.hero-stats {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 24px 36px;
}
.hero-stats .container { max-width: var(--max); margin: 0 auto; padding: 0; }
.hero-stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  overflow: hidden;
}
.hero-stats .stat-box {
  background: rgba(13,31,19,0.55);
  backdrop-filter: blur(8px);
  border: none;
  border-right: 1px solid rgba(255,255,255,0.10);
  border-radius: 0;
  padding: 22px 24px;
}
.hero-stats .stat-box:last-child { border-right: none; }
.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
  font-family: var(--font-head);
}
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--green-lt); }
.breadcrumb span { color: var(--border); }
.breadcrumb strong { color: var(--text); font-weight: 500; }
.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-lt);
  background: rgba(26,122,60,0.15);
  border: 1px solid rgba(26,122,60,0.3);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.page-hero-tag::before { content: '●'; font-size: 8px; }
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 780px;
}
.page-hero h1 em { font-style: normal; color: var(--green-lt); }
.page-hero-sub {
  font-size: 19px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 600px;
}
.page-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Hero (home) ──────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background-image: url('mountain%20pic.jpg');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}
/* Dark overlay — keeps the existing colour palette intact */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 31, 19, 0.88) 0%,
    rgba(13, 31, 19, 0.72) 50%,
    rgba(13, 31, 19, 0.82) 100%
  );
  pointer-events: none;
  z-index: 0;
}
/* Green ambient glow — top right */
#hero::after {
  content: '';
  position: absolute;
  top: -200px; right: -300px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(26,122,60,0.20) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
/* Ensure hero content sits above overlays */
#hero .hero-inner {
  position: relative;
  z-index: 2;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-lt);
  background: rgba(26,122,60,0.15);
  border: 1px solid rgba(26,122,60,0.3);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-tag::before { content: '●'; font-size: 8px; }
h1 {
  font-family: var(--font-head);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
}
h1 em { font-style: normal; color: var(--green-lt); }
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 24px;
}
.proof-item { display: flex; flex-direction: column; }
.proof-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.proof-label { font-size: 12px; color: var(--muted); margin-top: 4px; }
.proof-divider { width: 1px; height: 40px; background: var(--border); }

/* Hero visual card */
.hero-visual { position: relative; }
.hero-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), transparent);
}
.card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.card-dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #FF5F57; }
.dot-yellow { background: #FEBC2E; }
.dot-green { background: #28C840; }
.card-title { font-family: 'Lato', monospace; font-size: 13px; color: var(--muted); margin-left: 6px; }

.stat-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
}
.stat-big {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-big span { color: var(--green-lt); }
.stat-desc { font-size: 13px; color: var(--muted); max-width: 140px; text-align: right; line-height: 1.4; }
.mini-bars { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.bar-row { display: flex; align-items: center; gap: 12px; }
.bar-label { font-size: 12px; color: var(--muted); width: 90px; flex-shrink: 0; }
.bar-track { flex: 1; height: 6px; background: var(--bg2); border-radius: 3px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--green); border-radius: 3px; }
.bar-pct { font-family: var(--font-head); font-size: 12px; font-weight: 600; color: var(--white); width: 32px; text-align: right; }
.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--green-lt);
  background: rgba(26,122,60,0.15);
  border: 1px solid rgba(26,122,60,0.25);
  padding: 6px 12px;
  border-radius: 6px;
}

/* ── Section base ─────────────────────────────────── */
section { padding: 96px 24px; }
section.alt { background: var(--bg2); }

.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-lt);
  margin-bottom: 14px;
}
h2 {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
h2 em { font-style: normal; color: var(--green-lt); }
h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.65;
}
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin: 0 auto; }

/* ── Services grid ────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.service-card:hover { border-color: var(--green); transform: translateY(-4px); }
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  background: rgba(26,122,60,0.15);
  border: 1px solid rgba(26,122,60,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 24px;
}
.service-card p { font-size: 15px; color: var(--muted); line-height: 1.6; margin-bottom: 24px; }
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.service-list li::before {
  content: '→';
  color: var(--green-lt);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Stats strip ──────────────────────────────────── */
#stats { padding: 64px 24px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stat-box {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 40px 32px;
  text-align: center;
}
.stat-box:first-child { border-radius: 12px 0 0 12px; }
.stat-box:last-child { border-radius: 0 12px 12px 0; }
.stat-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num span { color: var(--green-lt); }
.stat-text { font-size: 14px; color: var(--muted); line-height: 1.4; }

/* ── How it works ─────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 1px;
  background: var(--border);
}
.step { display: flex; flex-direction: column; align-items: flex-start; }
.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--green-lt);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.step h3 { font-size: 19px; margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* ── Industries ───────────────────────────────────── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.industry-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color 0.2s;
}
.industry-card:hover { border-color: var(--green); }
.industry-icon { font-size: 28px; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.industry-card h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.industry-card p { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ── Founder ──────────────────────────────────────── */
.founder-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.founder-text blockquote {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  position: relative;
  padding-left: 24px;
}
.founder-text blockquote::before {
  content: '';
  position: absolute;
  left: 0; top: 4px; bottom: 4px;
  width: 3px;
  background: var(--green);
  border-radius: 2px;
}
.founder-text p { color: var(--muted); font-size: 16px; line-height: 1.7; margin-bottom: 16px; }
.founder-sig {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.sig-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--green-dim);
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  font-size: 18px;
}
.sig-name { font-family: var(--font-head); font-weight: 600; color: var(--white); font-size: 15px; }
.sig-role { font-size: 13px; color: var(--muted); }
.founder-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fv-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
}
.fv-card.span2 { grid-column: span 2; }
.fv-num { font-family: var(--font-head); font-size: 36px; font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 4px; }
.fv-num span { color: var(--green-lt); }
.fv-label { font-size: 13px; color: var(--muted); }
.fv-markets { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.fv-tag {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  background: rgba(26,122,60,0.15);
  border: 1px solid rgba(26,122,60,0.25);
  border-radius: 4px;
  color: var(--green-lt);
  letter-spacing: 0.04em;
}

/* ── CTA ──────────────────────────────────────────── */
#cta { padding: 96px 24px; background: var(--bg); }
.cta-box {
  background: linear-gradient(135deg, var(--green-dim) 0%, rgba(26,122,60,0.25) 100%);
  border: 1px solid var(--green);
  border-radius: 20px;
  padding: 80px 60px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(26,122,60,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box h2 { margin-bottom: 16px; }
.cta-box p { color: var(--muted); font-size: 17px; max-width: 500px; margin: 0 auto 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Contact ──────────────────────────────────────── */
#contact { padding: 96px 24px; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { color: var(--muted); font-size: 16px; line-height: 1.7; margin-bottom: 40px; }
.contact-detail { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.contact-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(26,122,60,0.15);
  border: 1px solid rgba(26,122,60,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-detail-text span { display: block; font-size: 12px; color: var(--muted); margin-bottom: 2px; }
.contact-detail-text strong { color: var(--white); font-size: 15px; }
form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { font-size: 13px; font-family: var(--font-head); font-weight: 600; color: var(--muted); display: block; margin-bottom: 6px; letter-spacing: 0.04em; text-transform: uppercase; }
input, textarea, select {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
input:focus, textarea:focus, select:focus { border-color: var(--green); }
textarea { resize: vertical; min-height: 120px; }
select option { background: var(--card); }

/* ── Feature Highlights (service pages) ─────────────*/
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: var(--green); }
.feature-icon {
  width: 48px; height: 48px;
  background: rgba(26,122,60,0.15);
  border: 1px solid rgba(26,122,60,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.feature-card h3 { font-size: 18px; margin-bottom: 10px; }
.feature-card p { font-size: 15px; color: var(--muted); line-height: 1.65; }

/* ── Split section (image + text) ────────────────── */
.split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split-inner.reverse { direction: rtl; }
.split-inner.reverse > * { direction: ltr; }
.split-content .section-tag { margin-bottom: 14px; }
.split-content p { color: var(--muted); font-size: 16px; line-height: 1.7; margin-bottom: 16px; }
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.55;
}
.check-list li::before {
  content: '✓';
  color: var(--green-lt);
  font-weight: 700;
  font-family: var(--font-head);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: rgba(26,122,60,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-top: 2px;
}
.split-visual {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.split-visual::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), transparent);
}

/* ── FAQ ─────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item:first-child { border-radius: 12px 12px var(--radius) var(--radius); }
.faq-item:last-child { border-radius: var(--radius) var(--radius) 12px 12px; }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  padding: 22px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--green-lt); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(26,122,60,0.15);
  border: 1px solid rgba(26,122,60,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--green-lt);
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 24px 22px; }
.faq-a p { font-size: 15px; color: var(--muted); line-height: 1.7; }

/* ── Testimonial ─────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}
.testimonial-stars { color: #F5A623; font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-dim);
  border: 1px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  font-size: 14px;
  flex-shrink: 0;
}
.author-name { font-family: var(--font-head); font-size: 14px; font-weight: 600; color: var(--white); }
.author-role { font-size: 12px; color: var(--muted); }

/* ── Process timeline (service pages) ────────────── */
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding-bottom: 40px;
  position: relative;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-left { display: flex; flex-direction: column; align-items: center; }
.timeline-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--green-lt);
  flex-shrink: 0;
  z-index: 1;
}
.timeline-line {
  width: 2px;
  flex: 1;
  background: var(--border);
  margin-top: 8px;
}
.timeline-item:last-child .timeline-line { display: none; }
.timeline-content { padding-top: 8px; }
.timeline-content h3 { font-size: 18px; margin-bottom: 8px; }
.timeline-content p { font-size: 15px; color: var(--muted); line-height: 1.65; }

/* ── Pricing card ─────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--green);
  background: linear-gradient(135deg, var(--green-dim) 0%, var(--card) 100%);
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
}
.pricing-name { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.pricing-price { font-family: var(--font-head); font-size: 48px; font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 4px; }
.pricing-price sup { font-size: 24px; vertical-align: top; margin-top: 8px; }
.pricing-price sub { font-size: 16px; color: var(--muted); font-weight: 400; }
.pricing-desc { font-size: 14px; color: var(--muted); margin-bottom: 32px; margin-top: 8px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text); }
.pricing-features li::before { content: '✓'; color: var(--green-lt); font-weight: 700; flex-shrink: 0; }
.pricing-features li.disabled { color: var(--muted); }
.pricing-features li.disabled::before { content: '—'; color: var(--border); }

/* ── Footer ───────────────────────────────────────── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 24px 32px;
}
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-top: 12px; max-width: 280px; }
.footer-col h5 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}
.footer-bottom a { color: var(--muted); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--white); }

/* ── Social Icons (footer) ────────────────────────── */
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: var(--muted);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.footer-social a:hover { background: var(--green); color: var(--white); }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }

/* ── Blog ─────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.blog-card {
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, border-color 0.2s;
}
.blog-card:hover { transform: translateY(-4px); border-color: var(--green); }
.blog-card-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}
.blog-tag {
  background: rgba(26,122,60,0.18);
  color: var(--green-lt);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}
.blog-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-card h3 { font-size: 18px; font-weight: 700; line-height: 1.35; margin-bottom: 10px; color: var(--white); }
.blog-card h3 a { color: inherit; text-decoration: none; }
.blog-card h3 a:hover { color: var(--green-lt); }
.blog-card p { font-size: 14px; color: var(--muted); line-height: 1.65; flex: 1; }
.blog-card-footer { margin-top: 20px; }
.blog-card-footer a { font-size: 13px; color: var(--green-lt); font-weight: 600; text-decoration: none; }
.blog-card-footer a:hover { text-decoration: underline; }
.blog-header-img {
  height: 10px;
  background: linear-gradient(90deg, var(--green) 0%, var(--green-lt) 100%);
}

/* Article page */
.article-hero { padding: 140px 24px 60px; position: relative; overflow: hidden; background: var(--bg2); }
.article-hero-inner { max-width: 780px; margin: 0 auto; }
.article-body { max-width: 780px; margin: 0 auto; padding: 60px 24px 80px; }
.article-body h2 { font-size: 24px; font-weight: 700; color: var(--white); margin: 40px 0 16px; }
.article-body h3 { font-size: 18px; font-weight: 600; color: var(--white); margin: 28px 0 12px; }
.article-body p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.article-body ul { margin: 0 0 20px 0; padding-left: 24px; }
.article-body ul li { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 8px; }
.article-body strong { color: var(--white); font-weight: 600; }
.article-cta-box {
  background: linear-gradient(135deg, var(--green-dim) 0%, rgba(26,122,60,0.2) 100%);
  border: 1px solid rgba(26,122,60,0.3);
  border-radius: 16px;
  padding: 36px;
  margin: 48px 0;
  text-align: center;
}
.article-cta-box h3 { font-size: 20px; color: var(--white); margin-bottom: 8px; }
.article-cta-box p { color: var(--muted); margin-bottom: 20px; }

/* ── Case Studies ─────────────────────────────────── */
.case-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 48px;
}
.case-card {
  background: var(--card);
  border-radius: 20px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.case-card-header {
  padding: 32px 36px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.case-industry {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,122,60,0.15);
  color: var(--green-lt);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.case-card-header h3 { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.case-card-header p { font-size: 14px; color: var(--muted); max-width: 500px; }
.case-results {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.case-result {
  text-align: center;
  background: rgba(26,122,60,0.12);
  border: 1px solid rgba(26,122,60,0.25);
  border-radius: 12px;
  padding: 16px 20px;
  min-width: 90px;
}
.case-result-num { font-family: var(--font-head); font-size: 28px; font-weight: 700; color: var(--green-lt); line-height: 1; }
.case-result-label { font-size: 11px; color: var(--muted); margin-top: 4px; }
.case-card-body { padding: 32px 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.case-section h4 { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green-lt); margin-bottom: 12px; }
.case-section p, .case-section ul li { font-size: 14px; color: var(--muted); line-height: 1.7; }
.case-section ul { padding-left: 18px; margin: 0; }
.case-section ul li { margin-bottom: 6px; }
.case-quote {
  margin: 0 36px 32px;
  padding: 20px 24px;
  border-left: 3px solid var(--green);
  background: rgba(26,122,60,0.07);
  border-radius: 0 12px 12px 0;
}
.case-quote p { font-size: 15px; color: var(--white); line-height: 1.7; font-style: italic; margin: 0 0 8px; }
.case-quote cite { font-size: 13px; color: var(--muted); font-style: normal; }

/* ── Thailand page specifics ──────────────────────── */
.market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.market-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: border-color 0.2s;
}
.market-card:hover { border-color: var(--green); }
.market-icon { font-size: 28px; margin-bottom: 12px; }
.market-card h3 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.market-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── Responsive additions ─────────────────────────── */
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr; }
  .case-card-body { grid-template-columns: 1fr; gap: 20px; }
  .case-card-header { flex-direction: column; }
  .market-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .market-grid { grid-template-columns: 1fr; }
  .case-results { gap: 12px; }
  .case-card-header, .case-card-body { padding: 24px 20px; }
  .case-quote { margin: 0 20px 24px; }
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner, .founder-inner, .contact-inner, .split-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .services-grid, .steps-grid, .industries-grid, .features-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid, .pricing-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-box:first-child { border-radius: 12px 0 0 0; }
  .stat-box:last-child { border-radius: 0 12px 12px 0; }
  .nav-links, .nav-cta .btn:not(.btn-primary) { display: none; }
  .hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .cta-box { padding: 48px 32px; }
  .split-inner.reverse { direction: ltr; }
  .page-hero { padding: 120px 24px 60px; }
}
@media (max-width: 600px) {
  .services-grid, .industries-grid, .stats-grid, .features-grid { grid-template-columns: 1fr; }
  .stat-box:first-child, .stat-box:last-child { border-radius: 0; }
  .stats-grid { gap: 0; }
  .stat-box:first-child { border-radius: 12px 12px 0 0; }
  .stat-box:last-child { border-radius: 0 0 12px 12px; }
  .steps-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .founder-visual { grid-template-columns: 1fr; }
  .fv-card.span2 { grid-column: span 1; }
  h1 { font-size: 36px; }
  .page-hero h1 { font-size: 34px; }
  .page-hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
  .timeline-item { grid-template-columns: 48px 1fr; gap: 16px; }
}
