:root{
  --accent: #EC7428;

  --bg: #ffffff;
  --soft: #fafafa;

  --text: #101828;
  --muted: rgba(16,24,40,.68);

  --border: rgba(16,24,40,.10);
  --shadow: 0 12px 30px rgba(16,24,40,.08);

  --radius: 16px;
  --radius-lg: 22px;

  --container: 1120px;
}

*{ box-sizing: border-box; }
html,body{ height: 100%; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.45;
}

/* Layout */
.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
}

.brand-mark{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display:grid;
  place-items:center;
  background: rgba(236,116,40,.12);
  border: 1px solid rgba(236,116,40,.22);
  color: var(--accent);
  font-weight: 800;
}

.brand-name{
  font-weight: 800;
  letter-spacing: -0.2px;
}

.nav{
  display:none;
  gap: 18px;
}

.nav a{
  color: rgba(16,24,40,.70);
  text-decoration:none;
  font-size: 14px;
}
.nav a:hover{ color: var(--text); }

.header-actions{ display:flex; gap: 10px; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration:none;
  font-weight: 700;
  font-size: 14px;
  cursor:pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease, box-shadow .12s ease;
}
.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 18px rgba(236,116,40,.22);
}
.btn-primary:hover{ box-shadow: 0 14px 26px rgba(236,116,40,.24); }

.btn-outline{
  background: #fff;
  border-color: rgba(16,24,40,.16);
  color: var(--text);
}
.btn-outline:hover{ background: #fbfbfb; }

.btn-soft{
  background: rgba(236,116,40,.10);
  border-color: rgba(236,116,40,.18);
  color: var(--text);
}
.btn-soft:hover{ background: rgba(236,116,40,.14); }

.full{ width: 100%; }

/* Pills */
.pill{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(16,24,40,.10);
  background: #fff;
  color: rgba(16,24,40,.72);
  font-size: 13px;
}

.pill.subtle{ background: #fff; }

.pill-dot{
  width: 9px; height: 9px; border-radius: 999px;
  background: var(--accent);
}

.pill-dot.warn{
  background: #f04438;
}

/* Sections */
.section{
  padding: 64px 0;
}

.section-soft{
  background: var(--soft);
  border-top: 1px solid rgba(16,24,40,.06);
  border-bottom: 1px solid rgba(16,24,40,.06);
}

.section-head{
  display:grid;
  gap: 10px;
  margin-bottom: 22px;
}

.h1{
  margin: 0;
  font-size: 46px;
  letter-spacing: -1px;
  line-height: 1.05;
}

.h2{
  margin: 0;
  font-size: 32px;
  letter-spacing: -0.6px;
  line-height: 1.12;
}

.lead{
  margin: 0;
  color: rgba(16,24,40,.72);
  font-size: 16px;
  max-width: 70ch;
}

.sub{
  margin: 0;
  color: rgba(16,24,40,.68);
  font-size: 15px;
  max-width: 78ch;
}

/* Hero */
.hero{
  padding: 54px 0 26px;
  background:
    radial-gradient(900px 420px at 25% 10%, rgba(236,116,40,.12), transparent 60%),
    radial-gradient(700px 360px at 80% 0%, rgba(236,116,40,.08), transparent 55%);
}

.hero-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.cta{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* Highlights */
.highlights{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.highlight{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
}

.highlight-title{
  font-size: 13px;
  color: rgba(16,24,40,.60);
  font-weight: 700;
}

.highlight-text{
  margin-top: 4px;
  font-size: 14px;
  color: rgba(16,24,40,.80);
}

/* Media */
.hero-media{
  display:grid;
  gap: 12px;
}

.mock{
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.mock-top{
  height: 14px;
  background: #fbfbfb;
  border-bottom: 1px solid rgba(16,24,40,.06);
}
.mock-bottom{
  height: 12px;
  background: #fbfbfb;
  border-top: 1px solid rgba(16,24,40,.06);
}

.mock-body{
  min-height: 380px;
  position: relative;
}

.mock-body img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

.mock-placeholder{
  height: 100%;
  padding: 18px;
  display:grid;
  gap: 10px;
  align-content: start;
  background:
    linear-gradient(0deg, rgba(236,116,40,.06), rgba(236,116,40,.04)),
    #fff;
}

.mock-badge{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  width: fit-content;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(236,116,40,.18);
  background: rgba(236,116,40,.08);
  font-size: 12.5px;
  color: rgba(16,24,40,.75);
}

.mock-line{
  height: 12px;
  border-radius: 999px;
  background: rgba(16,24,40,.10);
  width: 70%;
}
.mock-line.short{ width: 48%; }

.mock-map{
  margin-top: 10px;
  border-radius: 16px;
  height: 220px;
  border: 1px solid rgba(16,24,40,.08);
  background:
    linear-gradient(rgba(16,24,40,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,24,40,.06) 1px, transparent 1px);
  background-size: 22px 22px;
}

/* Mini cards */
.mini-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mini-card{
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  padding: 14px;
}

.mini-icon{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: rgba(236,116,40,.10);
  border: 1px solid rgba(236,116,40,.18);
  margin-bottom: 10px;
}

.mini-title{
  font-weight: 800;
  margin-bottom: 4px;
}

.mini-text{
  color
