*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --emerald-deep: #0B4D30;
  --emerald: #157A4E;
  --emerald-light: #1a9960;
  --amber: #D4851F;
  --amber-light: #E8A44A;
  --cream: #FDFBF7;
  --cream-dark: #F5F0E8;
  --text-primary: #1A1A1A;
  --text-secondary: #555;
  --text-tertiary: #888;
  --white: #FFFFFF;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-serif: 'Crimson Pro', serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(253,251,247,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(11,77,48,0.08);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  height: 56px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { font-weight: 800; font-size: 1.25rem; color: var(--emerald-deep); text-decoration: none; letter-spacing: -0.02em; }
.nav-logo span { color: var(--amber); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text-secondary); font-size: 0.85rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--emerald-deep); }

/* ===== BREADCRUMB ===== */
.breadcrumb-bar {
  position: sticky; top: 56px; z-index: 90;
  background: rgba(253,251,247,0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(11,77,48,0.06);
}
.breadcrumb-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  height: 48px; display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; color: var(--text-tertiary);
}
.breadcrumb-inner a { color: var(--text-tertiary); text-decoration: none; transition: color 0.2s; }
.breadcrumb-inner a:hover { color: var(--emerald); }
.breadcrumb-sep { opacity: 0.4; }
.breadcrumb-current { color: var(--emerald-deep); font-weight: 600; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, rgba(11,77,48,0.03) 100%);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%230B4D30' stroke-width='0.5' opacity='0.4'%3E%3Cpath d='M40 10 L55 25 L40 40 L25 25Z'/%3E%3Cpath d='M40 15 L50 25 L40 35 L30 25Z'/%3E%3Ccircle cx='40' cy='10' r='2'/%3E%3Ccircle cx='55' cy='25' r='2'/%3E%3Ccircle cx='40' cy='40' r='2'/%3E%3Ccircle cx='25' cy='25' r='2'/%3E%3Cline x1='40' y1='2' x2='40' y2='8'/%3E%3Cline x1='58' y1='25' x2='64' y2='25'/%3E%3Cline x1='40' y1='42' x2='40' y2='48'/%3E%3Cline x1='16' y1='25' x2='23' y2='25'/%3E%3Cpath d='M5 5 L15 5 L15 15' stroke-dasharray='3,2'/%3E%3Cpath d='M65 5 L75 5 L75 15' stroke-dasharray='3,2'/%3E%3Cpath d='M5 65 L15 65 L15 75' stroke-dasharray='3,2'/%3E%3Cpath d='M65 65 L75 65 L75 75' stroke-dasharray='3,2'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.07; pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.45rem 1.2rem; background: rgba(11,77,48,0.08);
  border-radius: 100px; font-size: 0.73rem; font-weight: 600;
  color: var(--emerald); text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 2rem;
  opacity: 0; animation: fadeUp 0.7s ease forwards 0.1s;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--emerald); }
.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 800;
  line-height: 1.02; letter-spacing: -0.04em;
  color: var(--emerald-deep); margin-bottom: 0.4rem;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.25s;
}
.hero-title span { color: var(--amber); }
.hero-tagline {
  font-family: var(--font-serif); font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  color: var(--amber); font-style: italic; margin-bottom: 1.8rem;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.4s;
}
.hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.2rem); color: var(--text-secondary);
  max-width: 600px; margin: 0 auto 3rem; line-height: 1.75;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.55s;
}
.hero-cta-group {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.7s;
}
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.95rem 2.2rem; border-radius: 14px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.92rem;
  text-decoration: none; transition: all 0.3s ease; border: none; cursor: pointer;
}
.btn-primary { background: var(--emerald-deep); color: white; }
.btn-primary:hover { background: var(--emerald); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(11,77,48,0.25); }
.btn-ghost { background: transparent; color: var(--emerald-deep); border: 2px solid rgba(11,77,48,0.18); }
.btn-ghost:hover { border-color: var(--emerald); background: rgba(11,77,48,0.04); }

/* ===== FEATURE SECTIONS ===== */
.feat {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 6rem 2rem;
  position: relative; overflow: hidden;
}
.feat:nth-child(even) { background: var(--white); }
.feat-inner {
  max-width: 1100px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.feat-inner.reverse { direction: rtl; }
.feat-inner.reverse > * { direction: ltr; }
.feat-content {
  opacity: 0; transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.feat-content.visible { opacity: 1; transform: translateY(0); }
.feat-label {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--emerald); margin-bottom: 1rem;
}
.feat-label-icon {
  width: 22px; height: 22px; border-radius: 6px;
  background: rgba(11,77,48,0.08);
  display: flex; align-items: center; justify-content: center;
}
.feat-label-icon svg { width: 12px; height: 12px; stroke: var(--emerald); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feat-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.1;
  color: var(--emerald-deep); margin-bottom: 0.5rem;
}
.feat-title span { color: var(--amber); }
.feat-tagline {
  font-family: var(--font-serif); font-size: 1.1rem;
  color: var(--amber); font-style: italic; margin-bottom: 1.5rem;
}
.feat-desc {
  font-size: 1rem; line-height: 1.8;
  color: var(--text-secondary); margin-bottom: 1.8rem;
}
.feat-highlights {
  display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2rem;
}
.feat-highlight {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.8rem 1rem; background: var(--white);
  border: 1px solid rgba(11,77,48,0.06); border-radius: 12px;
  transition: all 0.25s ease;
}
.feat:nth-child(even) .feat-highlight { background: var(--cream); }
.feat-highlight:hover { border-color: rgba(11,77,48,0.15); transform: translateX(4px); }
.feat-highlight-icon {
  width: 32px; height: 32px; border-radius: 9px;
  background: rgba(11,77,48,0.07);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.feat-highlight-icon svg { width: 16px; height: 16px; stroke: var(--emerald); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
/* .feat-highlight-text h4 {
  font-size: 0.85rem; font-weight: 700; 
  color: var(--text-primary);
  color: white;
  margin-bottom: 0.15rem;
}
.feat-highlight-text p {
  font-size: 0.8rem; 
  color: var(--text-secondary); 
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
} */
 /* Default untuk semua section (mode terang) */
.feat-highlight-text h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);   /* Warna gelap untuk mode terang */
  margin-bottom: 0.15rem;
}
.feat-highlight-text p {
  font-size: 0.8rem;
  color: var(--text-secondary); /* Warna abu gelap untuk mode terang */
  line-height: 1.5;
}

/* Mode gelap (section .feat-dark) */
.feat-dark .feat-highlight-text h4 {
  color: white;
}
.feat-dark .feat-highlight-text p {
  color: rgba(255, 255, 255, 0.7);
}
/* Akad pills */
.akad-pills {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem;
}
.akad-pill {
  padding: 0.4rem 1rem; border-radius: 100px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.02em;
  border: 1.5px solid rgba(11,77,48,0.15); color: var(--emerald-deep);
  background: rgba(11,77,48,0.03); transition: all 0.2s;
}
.akad-pill:hover { background: rgba(11,77,48,0.08); border-color: var(--emerald); }
.akad-pill.accent { border-color: rgba(212,133,31,0.3); color: var(--amber); background: rgba(212,133,31,0.04); }
.akad-pill.accent:hover { background: rgba(212,133,31,0.1); }
/* Stat row */
.feat-stats {
  display: flex; gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap;
}
.feat-stat {
  display: flex; flex-direction: column;
}
.feat-stat-val {
  font-size: 1.8rem; font-weight: 800; color: var(--emerald-deep);
  letter-spacing: -0.02em; line-height: 1;
}
.feat-stat-label {
  font-size: 0.72rem; color: var(--text-tertiary);
  margin-top: 0.2rem; font-weight: 500;
}
/* Feature Visual */
.feat-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}
.feat-visual.visible { opacity: 1; transform: translateY(0); }
.feat-visual::before {
  content: ''; position: absolute;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(11,77,48,0.04) 0%, transparent 70%);
  z-index: 0;
}
/* Mockup cards */
.mockup-card {
  width: 100%; max-width: 460px;
  background: var(--white); border-radius: 18px;
  border: 1px solid rgba(11,77,48,0.08);
  box-shadow: 0 20px 60px rgba(11,77,48,0.08), 0 8px 24px rgba(0,0,0,0.04);
  overflow: hidden; z-index: 1; position: relative;
}
.feat:nth-child(even) .mockup-card { background: var(--cream); }
.mockup-card-header {
  padding: 1rem 1.25rem 0.8rem;
  border-bottom: 1px solid rgba(11,77,48,0.06);
  display: flex; align-items: center; justify-content: space-between;
}
.mockup-card-title {
  font-size: 0.75rem; font-weight: 700; color: var(--emerald-deep);
  display: flex; align-items: center; gap: 0.4rem;
}
.mockup-card-title svg { width: 14px; height: 14px; stroke: var(--emerald); fill: none; stroke-width: 2; }
.mockup-card-dots { display: flex; gap: 4px; }
.mockup-card-dots span { width: 6px; height: 6px; border-radius: 50%; background: rgba(11,77,48,0.12); }
.mockup-card-body { padding: 1.25rem; }
/* Member table */
.mock-table { width: 100%; border-collapse: collapse; }
.mock-table th {
  text-align: left; font-size: 0.6rem; font-weight: 700;
  color: var(--text-tertiary); text-transform: uppercase; letter-spacing: 0.06em;
  padding: 0 0 0.6rem; border-bottom: 1px solid rgba(11,77,48,0.06);
}
.mock-table td {
  padding: 0.55rem 0; font-size: 0.72rem; color: var(--text-secondary);
  border-bottom: 1px solid rgba(11,77,48,0.04);
}
.mock-avatar-sm {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(11,77,48,0.08); display: inline-flex;
  align-items: center; justify-content: center; margin-right: 0.4rem;
  font-size: 0.5rem; font-weight: 700; color: var(--emerald);
  vertical-align: middle;
}
.mock-status {
  display: inline-block; padding: 0.15rem 0.5rem;
  border-radius: 100px; font-size: 0.58rem; font-weight: 600;
}
.mock-status.active { background: rgba(21,122,78,0.1); color: var(--emerald); }
.mock-status.pending { background: rgba(212,133,31,0.1); color: var(--amber); }
/* Savings card mockup */
.mock-savings { display: flex; flex-direction: column; gap: 0.6rem; }
.mock-saving-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.7rem 0.8rem; border-radius: 10px;
  background: rgba(11,77,48,0.03); border: 1px solid rgba(11,77,48,0.05);
}
.feat:nth-child(even) .mock-saving-row { background: rgba(11,77,48,0.04); }
.mock-saving-info { display: flex; flex-direction: column; }
.mock-saving-name { font-size: 0.75rem; font-weight: 600; color: var(--text-primary); }
.mock-saving-type { font-size: 0.58rem; color: var(--text-tertiary); margin-top: 1px; }
.mock-saving-amount { font-size: 0.82rem; font-weight: 700; color: var(--emerald-deep); }
.mock-saving-badge {
  font-size: 0.5rem; font-weight: 700; padding: 0.15rem 0.45rem;
  border-radius: 4px; margin-top: 2px;
}
.mock-saving-badge.wadiah { background: rgba(21,122,78,0.1); color: var(--emerald); }
.mock-saving-badge.mudharabah { background: rgba(212,133,31,0.1); color: var(--amber); }
/* Financing mockup */
.mock-finance-pipeline { display: flex; flex-direction: column; gap: 0.5rem; }
.mock-finance-item {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.65rem 0.8rem; border-radius: 10px;
  background: rgba(11,77,48,0.03); border: 1px solid rgba(11,77,48,0.05);
}
.feat:nth-child(even) .mock-finance-item { background: rgba(11,77,48,0.04); }
.mock-finance-step {
  width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; font-weight: 800; flex-shrink: 0;
}
.mock-finance-step.done { background: var(--emerald); color: white; }
.mock-finance-step.current { background: var(--amber); color: white; }
.mock-finance-step.upcoming { background: rgba(11,77,48,0.08); color: var(--text-tertiary); }
.mock-finance-detail { flex: 1; }
.mock-finance-detail-title { font-size: 0.72rem; font-weight: 600; color: var(--text-primary); }
.mock-finance-detail-sub { font-size: 0.58rem; color: var(--text-tertiary); }
.mock-finance-check svg { width: 14px; height: 14px; stroke: var(--emerald); fill: none; stroke-width: 2.5; }
/* Stock mockup */
.mock-stock-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.mock-stock-card {
  padding: 0.7rem; border-radius: 10px;
  background: rgba(11,77,48,0.03); border: 1px solid rgba(11,77,48,0.05);
}
.feat:nth-child(even) .mock-stock-card { background: rgba(11,77,48,0.04); }
.mock-stock-name { font-size: 0.68rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.25rem; }
.mock-stock-bar-bg {
  height: 5px; border-radius: 3px; background: rgba(11,77,48,0.08);
  margin-bottom: 0.25rem; overflow: hidden;
}
.mock-stock-bar-fill { height: 100%; border-radius: 3px; }
.mock-stock-meta { font-size: 0.55rem; color: var(--text-tertiary); display: flex; justify-content: space-between; }
/* Accounting mockup */
.mock-ledger { display: flex; flex-direction: column; gap: 0; }
.mock-ledger-row {
  display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr;
  padding: 0.5rem 0; border-bottom: 1px solid rgba(11,77,48,0.04);
  font-size: 0.65rem; color: var(--text-secondary); align-items: center;
}
.mock-ledger-row.header {
  font-size: 0.58rem; font-weight: 700; color: var(--text-tertiary);
  text-transform: uppercase; letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(11,77,48,0.08);
  padding-bottom: 0.6rem; margin-bottom: 0.2rem;
}
.mock-ledger-row .debit { color: var(--emerald); font-weight: 600; }
.mock-ledger-row .credit { color: var(--amber); font-weight: 600; }
.mock-ledger-total {
  margin-top: 0.5rem; padding-top: 0.6rem;
  border-top: 2px solid var(--emerald-deep);
  display: flex; justify-content: space-between;
  font-size: 0.72rem; font-weight: 700; color: var(--emerald-deep);
}
/* Compliance badge strip */
.mock-compliance {
  margin-top: 0.8rem; display: flex; gap: 0.4rem; flex-wrap: wrap;
}
.mock-compliance-badge {
  padding: 0.25rem 0.6rem; border-radius: 6px;
  font-size: 0.55rem; font-weight: 700; letter-spacing: 0.03em;
  background: rgba(11,77,48,0.06); color: var(--emerald);
}
/* Dark section */
.feat-dark {
  background: var(--emerald-deep) !important;
  color: white;
}
.feat-dark .feat-label { color: var(--amber-light); }
.feat-dark .feat-label-icon { background: rgba(255,255,255,0.1); }
.feat-dark .feat-label-icon svg { stroke: var(--amber-light); }
.feat-dark .feat-title { color: white; }
.feat-dark .feat-tagline { color: var(--amber-light); }
.feat-dark .feat-desc { color: rgba(255,255,255,0.7); }
.feat-dark .feat-highlight {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.08);
}
.feat-dark .feat-highlight:hover { border-color: rgba(255,255,255,0.15); }
.feat-dark .feat-highlight-icon { background: rgba(255,255,255,0.1); }
.feat-dark .feat-highlight-icon svg { stroke: var(--amber-light); }
.feat-dark .feat-highlight-text h4 { color: white; }
.feat-dark .feat-highlight-text p { color: rgba(255,255,255,0.6); }
.feat-dark .feat-stat-val { color: white; }
.feat-dark .feat-stat-label { color: rgba(255,255,255,0.5); }
/* Security visual */
.mock-security {
  display: flex; flex-direction: column; gap: 0.8rem;
  padding: 1.5rem; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 18px;
  max-width: 420px; width: 100%; z-index: 1; position: relative;
}
.mock-log-entry {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.6rem 0.7rem; background: rgba(255,255,255,0.04);
  border-radius: 10px; border: 1px solid rgba(255,255,255,0.06);
}
.mock-log-time { font-size: 0.58rem; opacity: 0.4; min-width: 48px; font-variant-numeric: tabular-nums; }
.mock-log-icon {
  width: 24px; height: 24px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.mock-log-icon svg { width: 12px; height: 12px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.mock-log-icon.green { background: rgba(74,222,128,0.15); }
.mock-log-icon.green svg { stroke: #4ade80; }
.mock-log-icon.yellow { background: rgba(251,191,36,0.15); }
.mock-log-icon.yellow svg { stroke: #fbbf24; }
.mock-log-icon.blue { background: rgba(96,165,250,0.15); }
.mock-log-icon.blue svg { stroke: #60a5fa; }
.mock-log-text { font-size: 0.68rem; opacity: 0.8; }
.mock-log-user { font-weight: 600; opacity: 1; }

/* ===== SPECS STRIP ===== */
.specs-strip {
  padding: 5rem 2rem;
  background: var(--cream-dark);
  border-top: 1px solid rgba(11,77,48,0.06);
  border-bottom: 1px solid rgba(11,77,48,0.06);
}
.specs-inner {
  max-width: 1000px; margin: 0 auto;
}
.specs-title {
  text-align: center; font-size: 1.4rem; font-weight: 800;
  color: var(--emerald-deep); margin-bottom: 0.5rem;
}
.specs-subtitle {
  text-align: center; font-family: var(--font-serif);
  font-style: italic; color: var(--amber); margin-bottom: 3rem;
}
.specs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.spec-card {
  padding: 1.5rem; background: var(--white);
  border-radius: 16px; border: 1px solid rgba(11,77,48,0.06);
  transition: all 0.25s ease;
}
.spec-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(11,77,48,0.06); }
.spec-card-icon {
  width: 40px; height: 40px; border-radius: 11px;
  background: rgba(11,77,48,0.07);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.spec-card-icon svg { width: 20px; height: 20px; stroke: var(--emerald); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.spec-card h3 { font-size: 0.9rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.4rem; }
.spec-card p { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.55; }

/* ===== CTA ===== */
.cta-section {
  padding: 8rem 2rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%230B4D30' stroke-width='0.5' opacity='0.4'%3E%3Cpath d='M40 10 L55 25 L40 40 L25 25Z'/%3E%3Ccircle cx='40' cy='10' r='2'/%3E%3Ccircle cx='55' cy='25' r='2'/%3E%3Ccircle cx='40' cy='40' r='2'/%3E%3Ccircle cx='25' cy='25' r='2'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.06; pointer-events: none;
}
.cta-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.03em; color: var(--emerald-deep); margin-bottom: 1rem; position: relative; }
.cta-subtitle { font-family: var(--font-serif); font-size: 1.2rem; color: var(--amber); font-style: italic; margin-bottom: 3rem; position: relative; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ===== FOOTER ===== */
.footer {
  padding: 3rem 2rem; text-align: center;
  border-top: 1px solid rgba(11,77,48,0.08);
}
.footer-tagline { font-family: var(--font-serif); font-style: italic; color: var(--text-tertiary); font-size: 0.95rem; margin-bottom: 0.5rem; }
.footer-copy { font-size: 0.78rem; color: var(--text-tertiary); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .feat-inner { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .feat-inner.reverse { direction: ltr; }
  .feat-highlights { text-align: left; }
  .feat { min-height: auto; padding: 4.5rem 1.5rem; }
  .mockup-card { max-width: 380px; margin: 0 auto; }
  .mock-security { max-width: 340px; margin: 0 auto; }
  .specs-grid { grid-template-columns: 1fr; }
  .feat-stats { justify-content: center; }
  .akad-pills { justify-content: center; }
  .mock-ledger-row { grid-template-columns: 2fr 1fr 1fr; }
  .mock-ledger-row .hide-mobile { display: none; }
}

/* Pastikan background section hijau gelap */
.feat-dark {
  background: #0B4D30 !important;
}

/* Elemen highlight di dalamnya harus transparan, tapi tetap gelap */
.feat-dark .feat-highlight {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.15);
}

/* Teks menjadi putih solid agar kontras tinggi */
.feat-dark .feat-highlight-text h4,
.feat-dark .feat-highlight-text p {
  color: white !important;
}

/* Jika ingin deskripsi sedikit redup, gunakan opacity */
.feat-dark .feat-highlight-text p {
  opacity: 0.85;
}