/* =========================================================
   NTP LTD — Design System
   Tokens derived from the brand hero reference (forest green
   + near-black ink on white, with a single sky-blue accent
   lifted from the logo).
   ========================================================= */

:root {
  /* --- Color --- */
  --brand-900: #032A40;   /* deep navy — darkest sections */
  --brand-800: #054467;   /* dark navy — section backgrounds */
  --brand-700: #0984C9;   /* primary brand blue — NTP's actual brand color, buttons, links, headline accent */
  --brand-600: #0EA5E9;
  --brand-100: #E4F0F8;
  --ink: #0B1512;         /* near-black, used for dark headline half + body headings */
  --ink-soft: #1E2B26;
  --slate: #4B5B54;       /* body copy */
  --slate-light: #7C8B84;
  --blue-accent: #0C9DE0; /* lifted from the ntp logo mark */
  --white: #FFFFFF;
  --bg-soft: #F5F8F6;
  --bg-soft-2: #EEF3F0;
  --border: #E1E9E4;
  --gold: #C99A3F;        /* sparing use — investor/finance accents */

  /* --- Type --- */
  --font-display: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

  /* --- Layout --- */
  --container: 1200px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(11, 21, 18, 0.06), 0 1px 1px rgba(11,21,18,0.04);
  --shadow-md: 0 8px 24px rgba(11, 21, 18, 0.08);
  --shadow-lg: 0 20px 48px rgba(11, 21, 18, 0.14);
  --nav-h: 88px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
body, h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

:focus-visible {
  outline: 2px solid var(--blue-accent);
  outline-offset: 3px;
}

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

/* --- Type scale --- */
h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.01em;
}
h1 { font-weight: 800; font-size: clamp(2.4rem, 5vw, 4.2rem); text-transform: uppercase; }
h2 { font-weight: 800; font-size: clamp(1.9rem, 3.4vw, 2.7rem); text-transform: uppercase; }
h3 { font-weight: 700; font-size: clamp(1.2rem, 1.8vw, 1.5rem); }
h4 { font-weight: 700; font-size: 1.05rem; }
p { color: var(--slate); }
.lede { font-size: 1.15rem; color: var(--slate); max-width: 60ch; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-700);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--brand-700);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--white); }
.eyebrow.on-dark::before { background: var(--white); }

.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.section--soft { background: var(--bg-soft); }
.section--ink { background: var(--ink); color: var(--white); }
.section--ink p { color: rgba(255,255,255,0.72); }
.section--ink h2, .section--ink h3 { color: var(--white); }
.section--brand { background: linear-gradient(155deg, var(--brand-800), var(--brand-900)); color: var(--white); }
.section--brand p { color: rgba(255,255,255,0.78); }
.section--brand h2, .section--brand h3 { color: var(--white); }

.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head h2 { margin-top: 14px; }
.section-head p { margin-top: 16px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.split {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn--primary { background: var(--brand-700); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--brand-800); box-shadow: var(--shadow-md); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--white); }

.btn--on-dark { background: var(--white); color: var(--brand-800); }
.btn--on-dark:hover { background: var(--brand-100); }

.btn--outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn--outline-light:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn--sm { padding: 11px 20px; font-size: 0.72rem; }
.btn--block { width: 100%; justify-content: center; }

/* --- Site header (fixed, transparent → solid on scroll) --- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 40px; width: auto; }
.brand__word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  line-height: 1.28;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.3s ease;
}
.brand__word span { display: block; }
.brand__word .accent { color: var(--brand-700); transition: color 0.3s ease; }

/* Text color themes: on-dark = starts white (floats over photo/dark hero), flips to ink once scrolled/solid */
.site-header--on-dark:not(.is-scrolled) .brand__word,
.site-header--on-dark:not(.is-scrolled) .nav-link,
.site-header--on-dark:not(.is-scrolled) .nav-toggle span {
  color: #FFFFFF;
}
.site-header--on-dark:not(.is-scrolled) .brand__word .accent { color: #BEE3F8; }
.site-header--on-dark:not(.is-scrolled) .nav-link.is-active { color: #FFFFFF; border-color: #FFFFFF; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-item { position: relative; }
.nav-link {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.nav-link:hover { color: var(--brand-700); }
.nav-link.is-active { color: var(--brand-700); border-color: var(--brand-700); }

/* Dropdown (Services) */
.has-dropdown .nav-link::after {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 7px;
  margin-bottom: 1px;
}
.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: -14px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.nav-item.has-dropdown:hover .dropdown,
.nav-item.has-dropdown:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
  color: var(--ink-soft);
}
.dropdown a:hover { background: var(--brand-100); color: var(--brand-700); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); display: block; transition: transform .25s ease, opacity .25s ease, background .3s ease; }
.nav-toggle[aria-expanded="true"] span { background: var(--ink) !important; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1180px) {
  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    gap: 2px;
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-item { width: 100%; }
  .nav-link { width: 100%; padding: 14px 4px; border-bottom: 1px solid var(--border); color: var(--ink-soft) !important; }
  .site-header--on-dark:not(.is-scrolled) .nav-link { color: var(--ink-soft) !important; }
  .has-dropdown .nav-link::after { display: none; }
  .dropdown {
    position: static; opacity: 1; pointer-events: auto; transform: none;
    box-shadow: none; padding: 4px 0 10px 18px; min-width: 0;
  }
  .dropdown a { padding: 10px 4px; color: var(--slate); }
  .nav-toggle { display: flex; }
  .nav-toggle span { background: var(--ink) !important; }
  .header-actions .btn--primary.only-desktop { display: none; }
}
@media (min-width: 1181px) {
  .header-actions .only-mobile { display: none; }
}

/* Mobile: the floating transparent nav collides with text baked into the hero
   photo at small sizes — force a solid, legible bar and push hero content below it. */
@media (max-width: 780px) {
  .site-header { background: rgba(255,255,255,0.97) !important; backdrop-filter: blur(10px); border-bottom: 1px solid var(--border) !important; box-shadow: var(--shadow-sm); }
  .site-header--on-dark .brand__word,
  .site-header--on-dark .nav-toggle span { color: var(--ink) !important; }
  .site-header--on-dark .brand__word .accent { color: var(--brand-700) !important; }
  .hero__media { margin-top: var(--nav-h); }
}

/* --- Page hero (inner pages) --- */
.page-hero {
  position: relative;
  background: linear-gradient(155deg, var(--brand-800), var(--brand-900));
  color: var(--white);
  padding: calc(var(--nav-h) + 56px) 0 72px;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.10), transparent 70%);
}
.page-hero .eyebrow { color: rgba(255,255,255,0.85); }
.page-hero .eyebrow::before { background: rgba(255,255,255,0.85); }
.page-hero h1 { color: var(--white); font-size: clamp(2.1rem, 4.2vw, 3.2rem); }
.page-hero p { color: rgba(255,255,255,0.8); margin-top: 18px; max-width: 62ch; }
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 0.78rem; letter-spacing: .04em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-bottom: 18px; font-weight: 600;
}
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: var(--white); }

/* --- Cards --- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.card__icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--brand-100);
  color: var(--brand-700);
  margin-bottom: 20px;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.95rem; }
.card ul { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.card ul li { font-size: 0.9rem; color: var(--slate); display: flex; gap: 8px; align-items: flex-start; }
.card ul li svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 3px; color: var(--brand-700); }

.grid { display: grid; gap: 28px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

/* --- Stats strip --- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: left; }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--brand-700);
}
.section--brand .stat strong, .section--ink .stat strong { color: var(--white); }
.stat span { font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--slate-light); font-weight: 600; }
.section--brand .stat span, .section--ink .stat span { color: rgba(255,255,255,0.65); }
@media (max-width: 780px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* --- Feature strip (bottom of hero, 5 pillars) --- */
.pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.pillar { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; }
.pillar__icon {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.pillar__icon svg { width: 100%; height: 100%; }
.pillar span {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.3;
}
@media (max-width: 860px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .pillars { grid-template-columns: repeat(2, 1fr); } }

/* --- Timeline / process list --- */
.timeline { display: flex; flex-direction: column; }
.timeline__item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding-block: 26px;
  border-top: 1px solid var(--border);
}
.timeline__item:last-child { border-bottom: 1px solid var(--border); }
.timeline__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--brand-700);
}

/* --- Quote / value banner --- */
.value-quote {
  border-left: 4px solid var(--brand-700);
  padding-left: 28px;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}

/* --- Footer --- */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.7); padding-top: 72px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand__word { color: var(--white); }
.footer-brand .brand__word .accent { color: #5FC0EB; }
.footer-brand p { margin-top: 18px; color: rgba(255,255,255,0.6); font-size: 0.92rem; max-width: 34ch; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, border-color .2s ease;
}
.footer-social a:hover { background: var(--brand-700); border-color: var(--brand-700); }
.footer-social svg { width: 15px; height: 15px; color: var(--white); }

.footer-col h4 { color: var(--white); font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.92rem; transition: color .2s ease; }
.footer-col a:hover { color: var(--white); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; }
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: #5FC0EB; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-block: 24px; font-size: 0.82rem; color: rgba(255,255,255,0.5); flex-wrap: wrap; gap: 12px;
}
.footer-bottom a:hover { color: var(--white); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* --- Utility --- */
.mt-0 { margin-top: 0 !important; }
.text-center { text-align: center; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--brand-100); color: var(--brand-800);
  font-size: 0.72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--radius-pill);
}

.divider { height: 1px; background: var(--border); border: none; margin: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--brand-700); color: var(--white);
  padding: 12px 18px; z-index: 200; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.back-to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--brand-700); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, background .2s ease;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.back-to-top:hover { background: var(--brand-800); }
.back-to-top svg { width: 18px; height: 18px; }

/* =========================================================
   Home hero — built around the reference photo
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
}
.hero__media {
  position: relative;
  line-height: 0;
}
.hero__media img { width: 100%; height: auto; }
.hero__cta-hit {
  position: absolute;
  left: 4.4%;
  top: 55.5%;
  width: 16%;
  height: 5.6%;
  border-radius: var(--radius-pill);
  min-width: 150px;
}
.hero__cta-hit:hover { box-shadow: 0 0 0 4px rgba(255,255,255,0.35); }
.hero__cta-hit:focus-visible { outline: 3px solid var(--white); outline-offset: 3px; }

.hero-note {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.hero-note .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding-block: 14px; flex-wrap: wrap;
}
.hero-note p { font-size: 0.86rem; color: var(--slate); margin: 0; }
.hero-note strong { color: var(--ink); }

/* --- Split feature section --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.split__media-tag {
  position: absolute; bottom: -22px; left: -22px;
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-md); padding: 18px 22px;
  display: flex; align-items: center; gap: 14px;
}
.split__media-tag .card__icon { margin: 0; width: 44px; height: 44px; }
.split__media-tag strong { display: block; font-family: var(--font-display); font-size: 1.3rem; color: var(--brand-700); }
.split__media-tag span { font-size: 0.76rem; color: var(--slate-light); text-transform: uppercase; letter-spacing: .04em; }
.split--reverse { grid-template-columns: 1fr 1fr; }
.split--reverse .split__media { order: 2; }
@media (max-width: 900px) {
  .split, .split--reverse { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse .split__media { order: 0; }
  .split__media-tag { position: static; margin-top: -40px; margin-left: 20px; width: fit-content; }
}

.check-list { display: flex; flex-direction: column; gap: 14px; margin-top: 26px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.98rem; color: var(--ink-soft); }
.check-list svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--brand-700); margin-top: 2px; }

/* --- Logos / trust strip --- */
.trust-strip { display: flex; flex-wrap: wrap; gap: 40px; align-items: center; justify-content: space-between; }
.trust-strip span { font-family: var(--font-display); font-weight: 700; color: var(--slate-light); font-size: 0.95rem; letter-spacing: .02em; }

/* =========================================================
   Forms
   ========================================================= */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label {
  display: block; font-size: 0.8rem; font-weight: 700; letter-spacing: .03em;
  text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); background: var(--bg-soft);
  color: var(--ink); transition: border-color .2s ease, background .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand-700); background: var(--white);
}
.field textarea { min-height: 130px; resize: vertical; }
.field-note { font-size: 0.78rem; color: var(--slate-light); margin-top: 6px; }
.form-success {
  display: none;
  background: var(--brand-100); color: var(--brand-800);
  border-radius: var(--radius-sm); padding: 16px 18px; margin-top: 18px;
  font-size: 0.92rem; font-weight: 600;
}
.form-success.is-visible { display: flex; align-items: center; gap: 10px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

/* =========================================================
   Accordion (FAQ)
   ========================================================= */
.accordion { display: flex; flex-direction: column; gap: 14px; }
.accordion-item {
  border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; background: var(--white);
}
.accordion-item__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 20px 24px; background: none; border: none; text-align: left;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--ink);
}
.accordion-item__q .plus {
  width: 26px; height: 26px; border-radius: 50%; background: var(--brand-100); color: var(--brand-700);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative;
}
.accordion-item__q .plus::before, .accordion-item__q .plus::after {
  content: ""; position: absolute; background: currentColor; border-radius: 2px;
}
.accordion-item__q .plus::before { width: 11px; height: 2px; }
.accordion-item__q .plus::after { width: 2px; height: 11px; transition: transform .25s ease; }
.accordion-item[open] .accordion-item__q .plus::after { transform: rotate(90deg); opacity: 0; }
.accordion-item__a { padding: 0 24px 22px; font-size: 0.95rem; color: var(--slate); }
.accordion-item summary { list-style: none; cursor: pointer; }
.accordion-item summary::-webkit-details-marker { display: none; }

/* =========================================================
   Investment progress
   ========================================================= */
.invest-card {
  border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; background: var(--white);
}
.invest-card__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; flex-wrap: wrap; margin-bottom: 22px; }
.progress-bar { height: 10px; border-radius: var(--radius-pill); background: var(--bg-soft-2); overflow: hidden; margin-block: 10px 6px; }
.progress-bar__fill { height: 100%; background: linear-gradient(90deg, var(--brand-600), var(--brand-700)); border-radius: var(--radius-pill); }
.progress-meta { display: flex; justify-content: space-between; font-size: 0.82rem; color: var(--slate-light); font-weight: 600; }
.invest-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 26px; }
.invest-fact { padding: 16px 18px; background: var(--bg-soft); border-radius: var(--radius-sm); }
.invest-fact span { display: block; font-size: 0.74rem; text-transform: uppercase; letter-spacing: .04em; color: var(--slate-light); font-weight: 700; margin-bottom: 4px; }
.invest-fact strong { font-family: var(--font-display); color: var(--ink); font-size: 1.05rem; }
@media (max-width: 640px) { .invest-facts { grid-template-columns: 1fr; } }

/* =========================================================
   Team / office cards, news cards, tags
   ========================================================= */
.news-card { display: flex; flex-direction: column; }
.news-card__meta { display: flex; gap: 10px; align-items: center; font-size: 0.76rem; text-transform: uppercase; letter-spacing: .04em; color: var(--brand-700); font-weight: 700; margin-bottom: 12px; }
.tag {
  display: inline-block; padding: 4px 12px; border-radius: var(--radius-pill);
  background: var(--brand-100); color: var(--brand-800); font-size: 0.7rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
}

.office-card { display: flex; gap: 16px; padding: 22px; border: 1px solid var(--border); border-radius: var(--radius-md); }
.office-card svg { width: 22px; height: 22px; color: var(--brand-700); flex-shrink: 0; }
.office-card h4 { margin-bottom: 6px; }
.office-card p { font-size: 0.92rem; }

/* Page-specific: not-found style banner for pages that used to be "under construction" */
.notice-banner {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 18px 22px; font-size: 0.92rem; color: var(--slate);
}
.notice-banner svg { width: 20px; height: 20px; color: var(--brand-700); flex-shrink: 0; margin-top: 2px; }
