:root {
  --navy: #163d20;
  --navy-light: #2e6b34;
  --orange: #e8823a;
  --orange-dark: #c96a28;
  --bg: #f7f5f1;
  --text: #1c2733;
  --muted: #5c6b7a;
  --white: #ffffff;
  --border: #e2e0da;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

header {
  background: var(--navy);
  padding: 0 0 16px;
  position: sticky;
  top: 0;
  z-index: 50;
}
.brand-bar {
  width: 100%;
  background: #0e2815;
  color: var(--white);
  text-align: center;
  padding: 14px 24px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.brand-bar a.brand-link { display: inline-block; }
.brand-bar .name {
  display: block;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.brand-bar .slogan {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.logo-box {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  padding: 8px 18px;
  border-radius: 8px;
}
.logo-box img { height: 68px; width: auto; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 15px;
}
.nav-links a.plain { color: var(--white); opacity: 0.85; transition: opacity 0.15s; }
.nav-links a.plain:hover { opacity: 1; }
.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
}
.nav-cta:hover { background: var(--orange-dark); }

.hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 64px 24px 100px;
  text-align: center;
}
.hero-brand {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1;
  background: var(--white);
  border-radius: 14px;
  margin-bottom: 40px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  overflow: hidden;
}
.hero-brand img { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; }
.hero-brand.has-graphic { position: relative; aspect-ratio: 2.35 / 1; }
.hero-brand.has-graphic img {
  clip-path: inset(0 100% 0 0);
  animation: heroWipeIn 1.4s ease forwards;
  animation-delay: 0.2s;
}
@keyframes heroWipeIn { to { clip-path: inset(0 0 0 0); } }
.hero h1 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 760px;
  margin: 0 auto 20px;
  line-height: 1.15;
}
.hero h1 .accent { color: var(--orange); }
.hero-tagline {
  font-size: 20px;
  font-weight: 700;
  color: var(--orange);
  max-width: 580px;
  margin: 0 auto 18px;
}
.hero p {
  font-size: 19px;
  color: #c9d4de;
  max-width: 580px;
  margin: 0 auto 36px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.15s, background 0.15s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-secondary { background: rgba(255,255,255,0.08); color: var(--white); border: 1px solid rgba(255,255,255,0.25); }
.btn-secondary:hover { background: rgba(255,255,255,0.15); }

section { padding: 80px 24px; }
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange-dark);
  margin-bottom: 12px;
}
.section-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 620px;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 48px;
}

.principle {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.principle .wrap { text-align: center; padding: 64px 24px; }
.principle h2 {
  font-size: 28px;
  font-weight: 700;
  max-width: 700px;
  margin: 0 auto 14px;
  line-height: 1.4;
}
.principle p { color: var(--muted); max-width: 620px; margin: 0 auto; font-size: 16px; }

.verticals { background: var(--bg); }
.service-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.pill {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
}
.pill:hover {
  border-color: var(--orange);
  color: var(--orange-dark);
}
.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.card .tag {
  display: inline-block;
  background: rgba(232,130,58,0.12);
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
  width: fit-content;
}
.card .tag.dev { background: rgba(92,107,122,0.12); color: var(--muted); }
.card h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.card p { color: var(--muted); margin-bottom: 18px; font-size: 15px; }
.card ul { list-style: none; margin-bottom: 8px; }
.card ul li {
  font-size: 14px;
  color: var(--text);
  padding: 8px 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.card ul li:first-child { border-top: none; }
.card ul li::before {
  content: "→";
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}
.card .card-link {
  margin-top: auto;
  padding-top: 10px;
  font-weight: 700;
  color: var(--orange-dark);
  font-size: 14px;
}
.card .card-link:hover { color: var(--orange); }

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
}
.service-item { display: flex; gap: 16px; align-items: flex-start; }
.service-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(232,130,58,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon svg { width: 24px; height: 24px; color: var(--orange-dark); }
.service-item h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.service-item p { color: var(--muted); font-size: 14px; }
.service-item .card-link { display: inline-block; margin-top: 8px; font-weight: 700; color: var(--orange-dark); font-size: 14px; }

.solutions-list { display: flex; flex-direction: column; gap: 44px; }
.solution-block {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.solution-block:last-child { border-bottom: none; padding-bottom: 0; }
.solution-icon {
  width: 56px;
  height: 56px;
}
.solution-icon svg { width: 28px; height: 28px; }
.solution-block h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.solution-block p { color: var(--muted); font-size: 15px; margin-bottom: 16px; }
.solution-block ul { list-style: none; margin-bottom: 16px; }
.solution-block ul li {
  font-size: 14px;
  color: var(--text);
  padding: 8px 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.solution-block ul li:first-child { border-top: none; }
.solution-block ul li::before {
  content: "→";
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}
.solution-block .card-link { font-weight: 700; color: var(--orange-dark); font-size: 14px; }
.solution-block .card-link:hover { color: var(--orange); }

.how { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step { text-align: left; }
.step .num {
  width: 40px; height: 40px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  margin-bottom: 16px;
}
.step h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14px; }

.process-diagram { max-width: 1160px; margin: 0 auto; }

.pilot-band {
  background: var(--navy);
  border-radius: 12px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  color: var(--white);
}
.pilot-band h3 { font-size: 22px; margin-bottom: 10px; }
.pilot-band p { color: #c9d4de; font-size: 15px; }
.pilot-band .pilot-links { margin-top: 14px; display: flex; gap: 14px; flex-wrap: wrap; }
.pilot-box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}
.pilot-box .big { font-size: 26px; font-weight: 800; color: var(--orange); }
.pilot-box .small { font-size: 13px; color: #aebccb; margin-top: 4px; }

.form-section { background: var(--white); }
.form-shell {
  max-width: 620px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px;
}
.form-shell .section-title, .form-shell .section-sub { margin-left: auto; margin-right: auto; text-align: center; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}
.field .req { color: var(--orange-dark); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  background: var(--white);
  color: var(--text);
}
.field textarea { resize: vertical; min-height: 90px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,130,58,0.15);
}
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-top: 4px;
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  cursor: pointer;
}
.checkbox-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--orange);
  cursor: pointer;
  flex-shrink: 0;
}
.submit-btn { width: 100%; margin-top: 6px; }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.form-footnote { font-size: 13px; color: var(--muted); text-align: center; margin-top: 14px; }
#form-status {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
  display: none;
}
#form-status.success { display: block; background: rgba(27,138,125,0.1); color: #0f5a51; border: 1px solid rgba(27,138,125,0.3); }
#form-status.error { display: block; background: #fdeceb; color: #a83f34; border: 1px solid #f4c6c0; }

footer {
  background: #0a1a2c;
  color: #92a3b3;
  padding: 32px 24px;
  font-size: 14px;
  text-align: center;
}
footer .footer-contact { margin-top: 8px; }
footer .footer-contact a { color: var(--orange); }

@media (max-width: 760px) {
  .brand-bar { padding: 10px 16px 8px; }
  .brand-bar .name { font-size: 18px; }
  .brand-bar .slogan { font-size: 11px; }
  .nav-links a.plain { display: none; }
  .logo-box img { height: 48px; }
  .hero-brand { padding: 12px; margin-bottom: 28px; }
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 17px; }
  .cards { grid-template-columns: 1fr; }
  .service-list { grid-template-columns: 1fr; }
  .solution-block { flex-direction: column; gap: 16px; }
  .steps { grid-template-columns: 1fr; }
  .pilot-band { grid-template-columns: 1fr; padding: 28px; }
  .row-2 { grid-template-columns: 1fr; }
  .checkbox-group { grid-template-columns: 1fr; }
  .section-title { font-size: 26px; }
}
