:root {
  --navy: #071b32;
  --navy-2: #0c2c4c;
  --green: #20c997;
  --green-2: #12b886;
  --lime: #9be15d;
  --gold: #ffd166;
  --ink: #102033;
  --muted: #5f6f83;
  --light: #f5fbff;
  --soft: #eef7f4;
  --card: #ffffff;
  --border: rgba(7, 27, 50, 0.12);
  --shadow: 0 22px 60px rgba(7, 27, 50, 0.13);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--green);
  color: var(--navy);
  font-weight: 900;
}
.skip-link:focus { left: 12px; }

.notice-bar {
  background: var(--navy);
  color: rgba(255,255,255,.88);
  font-size: .92rem;
}
.notice-bar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 9px 0;
}
.notice-bar a { color: #fff; text-decoration: none; font-weight: 800; }
.notice-bar a:hover { color: var(--green); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green), var(--lime));
  color: var(--navy);
  font-weight: 1000;
  font-size: 1.35rem;
  box-shadow: 0 12px 30px rgba(18, 184, 134, .28);
}
.brand-text strong { display: block; color: var(--navy); font-size: 1.04rem; line-height: 1.1; }
.brand-text span { display: block; color: var(--muted); font-size: .86rem; margin-top: 2px; }
.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav a {
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--navy);
  font-weight: 850;
  font-size: .93rem;
}
.site-nav a:hover,
.site-nav a.active { background: #e9fbf5; color: #087f5b; }
.nav-cta {
  background: var(--navy) !important;
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(7,27,50,.18);
}
.nav-cta:hover { background: var(--green) !important; color: var(--navy) !important; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 12px;
  padding: 9px;
}
.menu-toggle span { display: block; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 999px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 9vw, 108px) 0 72px;
  background:
    radial-gradient(circle at 8% 10%, rgba(32,201,151,.20), transparent 30%),
    radial-gradient(circle at 92% 16%, rgba(255,209,102,.28), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f1fbff 52%, #eefaf5 100%);
}
.hero.compact { padding: 70px 0 54px; }
.hero-grid {
  display: grid;
  gap: 38px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(32,201,151,.14);
  color: #087f5b;
  font-weight: 950;
  font-size: .9rem;
  margin: 0 0 16px;
}
.eyebrow::before { content: "✓"; }
h1, h2, h3 { color: var(--navy); line-height: 1.12; }
h1 { font-size: clamp(2.55rem, 6vw, 5rem); margin: 0 0 20px; letter-spacing: -0.05em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin: 0 0 18px; letter-spacing: -0.035em; }
h3 { font-size: 1.24rem; margin: 0 0 10px; }
.lead { font-size: clamp(1.08rem, 2.2vw, 1.32rem); color: #385064; max-width: 720px; margin: 0 0 26px; }
.hero-actions, .button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
}
.btn-primary { background: var(--green); color: var(--navy); box-shadow: 0 14px 34px rgba(18,184,134,.25); }
.btn-primary:hover { background: var(--lime); }
.btn-secondary { background: #fff; color: var(--navy); border-color: var(--border); }
.btn-secondary:hover { border-color: var(--green); color: #087f5b; }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: #123a62; }
.hero-panel {
  background: rgba(255,255,255,.86);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 22px;
}
.preview-card {
  overflow: hidden;
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--border);
}
.browser-dots { display: flex; gap: 6px; padding: 14px; border-bottom: 1px solid rgba(7,27,50,.08); }
.browser-dots span { width: 10px; height: 10px; border-radius: 999px; background: #d0d8e3; }
.preview-hero { padding: 26px; background: linear-gradient(135deg, var(--navy), #124f72); color: #fff; }
.preview-hero h3 { color: #fff; font-size: 1.55rem; }
.preview-hero p { color: rgba(255,255,255,.76); margin: 0; }
.preview-list { padding: 18px; display: grid; gap: 12px; }
.preview-list div { display: flex; justify-content: space-between; gap: 12px; border: 1px solid rgba(7,27,50,.08); padding: 12px; border-radius: 14px; }
.preview-list b { color: var(--navy); }
.stat-strip {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}
.stat {
  background: rgba(255,255,255,.86);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
}
.stat strong { display: block; font-size: 1.7rem; color: var(--navy); line-height: 1; }
.stat span { color: var(--muted); font-weight: 800; font-size: .92rem; }

section { padding: 76px 0; }
.section-soft { background: var(--light); }
.section-navy { background: linear-gradient(135deg, var(--navy), #0e3c63); color: #fff; }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-navy p, .section-navy li { color: rgba(255,255,255,.78); }
.section-head { display: flex; justify-content: space-between; gap: 28px; align-items: end; margin-bottom: 28px; }
.section-head p { max-width: 620px; color: var(--muted); margin: 0; }
.kicker { color: #087f5b; font-weight: 1000; text-transform: uppercase; font-size: .78rem; letter-spacing: .12em; margin: 0 0 8px; }
.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 14px 36px rgba(7,27,50,.06);
}
.card.highlight { border-color: rgba(32,201,151,.48); box-shadow: 0 18px 46px rgba(32,201,151,.12); }
.card p { color: var(--muted); margin-top: 0; }
.card ul, .tick-list { padding: 0; margin: 16px 0 0; list-style: none; display: grid; gap: 10px; }
.card li, .tick-list li { position: relative; padding-left: 28px; color: #41556a; }
.card li::before, .tick-list li::before { content: "✓"; position: absolute; left: 0; color: #087f5b; font-weight: 1000; }
.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: #e9fbf5;
  color: #087f5b;
  font-weight: 1000;
  margin-bottom: 16px;
}
.price { font-size: 2.5rem; line-height: 1; color: var(--navy); font-weight: 1000; letter-spacing: -.04em; margin: 12px 0; }
.price small { font-size: 1rem; color: var(--muted); font-weight: 800; }
.badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e9fbf5;
  color: #087f5b;
  font-weight: 950;
  font-size: .82rem;
}
.project-card { overflow: hidden; padding: 0; }
.project-top { padding: 24px; background: linear-gradient(135deg, #ffffff, #eefaf5); border-bottom: 1px solid var(--border); }
.project-top.school { background: linear-gradient(135deg, #e7f5ff, #fff7df); }
.project-top.lamination { background: linear-gradient(135deg, #fff1f2, #f8f0ff); }
.project-body { padding: 24px; }
.project-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 15px 0; }
.project-meta span { padding: 6px 10px; border-radius: 999px; background: #f2f4f7; color: #344054; font-size: .84rem; font-weight: 850; }
.sample-link { text-decoration: none; display: block; height: 100%; }
.sample-link:hover .card { transform: translateY(-4px); box-shadow: 0 20px 46px rgba(7,27,50,.11); }
.sample-link .card { transition: .18s ease; height: 100%; }
.process-step { counter-increment: step; }
.process { counter-reset: step; }
.process-step .icon::before { content: counter(step); }
.feature-band {
  background: linear-gradient(135deg, var(--green), var(--lime));
  border-radius: var(--radius-xl);
  padding: clamp(26px, 5vw, 48px);
  color: var(--navy);
  box-shadow: 0 24px 60px rgba(18,184,134,.22);
}
.feature-band h2 { color: var(--navy); }
.feature-band p { color: rgba(7,27,50,.72); }
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(22px, 4vw, 36px);
  box-shadow: var(--shadow);
}
.form-grid { display: grid; gap: 14px; }
.input, textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  font: inherit;
  background: #fff;
}
textarea { min-height: 130px; resize: vertical; }
.label { display: block; font-weight: 900; color: var(--navy); margin-bottom: 6px; }
.small { font-size: .92rem; color: var(--muted); }
.callout {
  border-left: 5px solid var(--green);
  background: #f1fff9;
  padding: 18px;
  border-radius: 16px;
}
.table-wrap { overflow-x: auto; border-radius: 18px; border: 1px solid var(--border); background: #fff; }
table { width: 100%; border-collapse: collapse; min-width: 720px; }
th, td { text-align: left; padding: 15px; border-bottom: 1px solid rgba(7,27,50,.08); }
th { color: var(--navy); background: #f7fbff; }
td { color: #41556a; }

.site-footer { background: #06182c; color: rgba(255,255,255,.80); padding: 54px 0 0; }
.footer-grid { display: grid; gap: 26px; }
.footer-grid h3, .site-footer strong { color: #fff; }
.footer-grid ul { padding: 0; margin: 0; list-style: none; display: grid; gap: 8px; }
.footer-grid a { color: rgba(255,255,255,.82); text-decoration: none; }
.footer-grid a:hover { color: var(--green); }
.footer-bottom { margin-top: 38px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.62); font-size: .92rem; }
.footer-bottom a { color: #fff; font-weight: 900; }

@media (min-width: 760px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
  .stat-strip { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 92px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { border-radius: 14px; }
  .notice-bar .container { flex-direction: column; align-items: flex-start; gap: 3px; }
  .section-head { display: block; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .brand-text span { display: none; }
  h1 { font-size: 2.45rem; }
  section { padding: 58px 0; }
  .hero { padding-top: 46px; }
  .hero-actions .btn, .button-row .btn { width: 100%; }
}