*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Amberteq brand — white header, green accent, teal/cyan card borders */
  --green:        #3BB34A;
  --green-dark:   #2E9A3D;
  --green-light:  #EDF7EE;
  --cyan:         #3AAFCC;
  --cyan-light:   #E8F7FB;
  --cyan-border:  #A8DDE9;

  --navy:         #0D1B2E;   /* dark sections bg */
  --navy-mid:     #162540;
  --white:        #FFFFFF;
  --off-white:    #F6F8FA;
  --surface:      #EEF2F6;
  --border:       rgba(0,0,0,0.09);
  --border-mid:   rgba(0,0,0,0.15);

  --text-dark:    #111111;
  --text-body:    #2D3540;
  --text-muted:   #5C6D7E;
  --text-hint:    #8FA0B3;

  --amber:        #B87A1A;
  --amber-light:  #FDF4E3;

  --font: 'Noto Sans', sans-serif;
  --mono: 'Noto Sans Mono', monospace;
  --r:  8px;
  --rl: 12px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV — white header matching amberteq.com ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--white);
  height: 72px;
  display: flex; align-items: center;
  padding: 0 2.5rem;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1240px; width: 100%; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img {
  width: auto;
  height: 30px;
}
.nav-logo-mark {
  width: 32px; height: 32px;
  background: var(--green);
  clip-path: polygon(50% 0%, 100% 30%, 100% 70%, 50% 100%, 0% 70%, 0% 30%);
  /* simple green diamond/hex approximating the amberteq logo shape */
}
.nav-logo-text { font-size: 22px; font-weight: 700; color: var(--text-dark); letter-spacing: -0.02em; }
.nav-logo-sub {
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); margin-left: 4px; padding-top: 2px;
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 14px; color: var(--text-body); text-decoration: none;
  font-weight: 400; transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }
.nav-cta {
  background: var(--green) !important;
  color: #fff !important; padding: 9px 22px;
  border-radius: var(--r); font-size: 14px !important;
  font-weight: 600 !important; transition: background 0.2s !important;
  text-decoration: none;
}
.nav-cta:hover { background: var(--green-dark) !important; }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; }
section { padding: 6rem 0; }

/* ── TYPE ── */
.eyebrow {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan);
  margin-bottom: 12px; display: block;
}
.eyebrow-green { color: var(--green); }
.eyebrow-white { color: rgba(255,255,255,0.45); }
h1 { font-size: clamp(1.9rem, 3.5vw, 2.85rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.028em; }
h2 { font-size: clamp(1.45rem, 2.3vw, 1.95rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.022em; }
h3 { font-size: 1rem; font-weight: 600; }
p { color: var(--text-body); line-height: 1.75; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: var(--r); font-family: var(--font);
  font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none;
  transition: all 0.2s; border: none;
}
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); }
.btn-green-outline { background: transparent; color: var(--green); border: 1.5px solid var(--green); }
.btn-green-outline:hover { background: var(--green-light); }
.btn-outline { background: transparent; color: var(--text-dark); border: 1.5px solid var(--border-mid); }
.btn-outline:hover { border-color: var(--green); color: var(--green); }
.btn-white-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.3); }
.btn-white-outline:hover { border-color: rgba(255,255,255,0.7); }
.btn::after { content: "→"; font-size: 15px; }

/* ── HERO — dark navy, same feel as "Contact us" green button on white site ── */
#hero {
  padding-top: 134px; padding-bottom: 5.5rem;
  background: var(--navy);
  position: relative; overflow: hidden;
}
/* subtle grid texture */
#hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 70% 50%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 70% 50%, black 20%, transparent 75%);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 1.75rem; }
.badge {
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.5);
}
.badge-green { border-color: rgba(59,179,74,0.6); color: #7ECC87; }
.hero-h1 { color: #fff; margin-bottom: 1.25rem; }
.hero-h1 em { font-style: normal; color: #7ECC87; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.62); line-height: 1.7; margin-bottom: 2.25rem; max-width: 480px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 2.75rem; }
.hero-trust { display: flex; gap: 2.5rem; border-top: 1px solid rgba(255,255,255,0.09); padding-top: 1.75rem; }
.trust-item { font-size: 12px; color: rgba(255,255,255,0.4); }
.trust-item strong { display: block; font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 1px; }

.dep-map-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--rl); padding: 1.5rem;
}
.dep-map-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 1rem; }

/* ── WHY NOW — dark ── */
#why-now { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.06); }
#why-now h2 { color: #fff; }
#why-now p { color: rgba(255,255,255,0.62); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.pull-quote {
  font-size: 1.05rem; font-style: italic; font-weight: 400; line-height: 1.65;
  color: rgba(255,255,255,0.82);
  border-left: 3px solid var(--green); padding-left: 1.25rem; margin: 1.75rem 0;
}
.nist-block {
  margin-top: 2rem; padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r);
}
.nist-block p { font-size: 13px; color: rgba(255,255,255,0.48); margin-bottom: 10px; }
.nist-block strong { color: rgba(255,255,255,0.78); }
.std-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.std-tag {
  font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: 0.08em;
  padding: 3px 9px; border: 1px solid rgba(255,255,255,0.13); border-radius: 4px;
  color: rgba(255,255,255,0.45);
}
.timeline { margin-top: 1.5rem; padding-left: 1.5rem; border-left: 1px solid rgba(255,255,255,0.1); }
.tl-item { margin-bottom: 1.75rem; position: relative; }
.tl-item::before { content:''; position:absolute; left:-1.62rem; top:6px; width:7px; height:7px; border-radius:50%; background: var(--green); }
.tl-label { font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 3px; }
.tl-item h3 { color: #fff; font-weight: 600; margin-bottom: 3px; }
.tl-item p { font-size: 13px; color: rgba(255,255,255,0.48); }

/* ── WHO — light ── */
#who { background: var(--off-white); }
/* Cards with cyan border like amberteq.com service cards */
.sector-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 2.5rem; }
.sector-card {
  background: var(--white); padding: 1.5rem;
  border: 1px solid var(--cyan-border);
  border-radius: var(--rl);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.sector-card:hover { border-color: var(--cyan); box-shadow: 0 4px 18px rgba(58,175,204,0.12); }
.sector-tag { font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cyan); margin-bottom: 8px; }
.sector-card h3 { font-size: 14px; font-weight: 700; color: var(--green); margin-bottom: 7px; }
.sector-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── SCENARIOS ── */
#scenarios { background: var(--white); }
.scenarios-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 2.5rem; }
.scenario-card {
  background: var(--off-white); padding: 1.75rem;
  border: 1px solid var(--border); border-radius: var(--rl);
  transition: border-color 0.2s;
}
.scenario-card:hover { border-color: var(--cyan-border); }
.scenario-num { font-family: var(--mono); font-size: 11px; font-weight: 500; color: var(--text-hint); margin-bottom: 10px; }
.scenario-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 7px; color: var(--text-dark); }
.scenario-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.output-tag {
  display: inline-block; margin-top: 10px;
  font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cyan); background: var(--cyan-light); padding: 3px 8px; border-radius: 4px;
}

/* ── ASSESSMENT ── */
#assessment { background: var(--off-white); }
.assess-grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: 4.5rem; align-items: start; }
.assess-table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.assess-table th {
  font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-hint); padding: 8px 12px; text-align: left; border-bottom: 1.5px solid var(--border-mid);
}
.assess-table td {
  font-size: 13px; padding: 9px 10px;
  border-bottom: 1px solid var(--border); color: var(--text-body); vertical-align: top;
}
.assess-table tr:last-child td { border-bottom: none; }
.assess-table td:first-child { font-weight: 600; color: var(--text-dark); font-size: 13px; }
.output-pill {
  font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 0.06em;
  padding: 2px 8px; border-radius: 4px; background: var(--cyan-light); color: var(--cyan);
  text-transform: uppercase; white-space: nowrap;
}

/* ── METHODOLOGY — dark ── */
#methodology { background: var(--navy); }
#methodology h2 { color: #fff; }
#methodology > .container > p { color: rgba(255,255,255,0.58); max-width: 560px; margin-top: 1rem; }
.phases { margin-top: 2.5rem; }
.phase-row {
  display: grid; grid-template-columns: 40px 1fr 1fr; gap: 2rem; align-items: start;
  padding: 1.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.phase-row:last-child { border-bottom: none; }
.phase-num { font-family: var(--mono); font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.22); padding-top: 3px; }
.phase-name { font-weight: 700; color: var(--green); font-size: 15px; margin-bottom: 6px; }
.phase-desc { font-size: 13px; color: rgba(255,255,255,0.52); line-height: 1.65; }
.phase-outputs { display: flex; flex-direction: column; gap: 6px; }
.phase-out {
  font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.38); padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; width: fit-content;
}

/* ── SOFTWARE ── */
#software { background: var(--off-white); }
.software-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.sw-features { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.75rem; }
.sw-feature { display: flex; gap: 1rem; }
.sw-feature-num { font-family: var(--mono); font-size: 12px; font-weight: 700; color: var(--green); flex-shrink: 0; width: 20px; padding-top: 2px; }
.sw-feature h3 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.sw-feature p { font-size: 13px; color: var(--text-muted); line-height: 1.55; }
.score-card {
  background: var(--white); border: 1px solid var(--cyan-border); border-radius: var(--rl); padding: 1.5rem;
  box-shadow: 0 2px 14px rgba(58,175,204,0.08);
}
.score-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.25rem; }
.score-title { font-size: 13px; font-weight: 700; color: var(--text-dark); }
.score-date { font-family: var(--mono); font-size: 10px; color: var(--text-hint); }
.score-rows { display: flex; flex-direction: column; gap: 10px; }
.score-row { display: flex; align-items: center; gap: 10px; }
.score-label { font-size: 12px; color: var(--text-body); width: 128px; flex-shrink: 0; }
.score-track { flex: 1; height: 5px; background: var(--surface); border-radius: 3px; overflow: hidden; }
.score-fill { height: 100%; border-radius: 3px; }
.fill-good { background: var(--green); }
.fill-mid  { background: var(--amber); }
.fill-low  { background: #D0392B; }
.score-val { font-family: var(--mono); font-size: 11px; color: var(--text-hint); width: 28px; text-align: right; }
.score-legend { display: flex; gap: 1rem; margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.leg { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--text-muted); }
.leg-dot { width: 8px; height: 8px; border-radius: 2px; }

/* ── RISKS ── */
#risks { background: var(--white); }
.risks-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 2.5rem; }
.risk-card {
  padding: 1.5rem;
  border: 1px solid var(--cyan-border); border-radius: var(--rl);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.risk-card:hover { border-color: var(--cyan); box-shadow: 0 4px 16px rgba(58,175,204,0.1); }
.risk-icon { width: 32px; height: 32px; border-radius: 7px; background: var(--cyan-light); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.risk-card h3 { font-size: 14px; font-weight: 700; color: var(--green); margin-bottom: 7px; }
.risk-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── COMPARISON ── */
#comparison { background: var(--off-white); }
.compare-table { width: 100%; border-collapse: collapse; margin-top: 2rem; }
.compare-table th {
  padding: 12px 18px; text-align: left; font-size: 13px; font-weight: 700;
  border-bottom: 2px solid var(--border-mid);
}
.compare-table th:first-child { width: 26%; color: var(--text-muted); font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; }
.compare-table th:nth-child(2) { color: var(--text-muted); font-weight: 500; }
.compare-table th:nth-child(3) { color: var(--green); }
.compare-table td { padding: 12px 18px; font-size: 13px; border-bottom: 1px solid var(--border); vertical-align: top; }
.compare-table td:first-child { font-weight: 600; font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.compare-table td:nth-child(2) { color: var(--text-muted); }
.compare-table td:nth-child(3) { color: var(--text-dark); font-weight: 600; }
.compare-table tr:last-child td { border-bottom: none; }
.arr { color: var(--green); margin-right: 5px; }

/* ── PROOF ── */
#proof { background: var(--white); }
.proof-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 2.5rem; }
.proof-card {
  padding: 1.5rem; border: 1px solid var(--cyan-border); border-radius: var(--rl);
  background: var(--off-white);
  transition: border-color 0.2s;
}
.proof-card:hover { border-color: var(--cyan); }
.proof-card .d-tag { font-family: var(--mono); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--cyan); margin-bottom: 8px; }
.proof-card h3 { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.proof-card p { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

/* ── REGULATORY ── */
#regulatory { background: var(--off-white); }
.reg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.reg-cards { display: flex; flex-direction: column; gap: 8px; margin-top: 1rem; }
.reg-card {
  padding: 1.1rem 1.25rem; background: var(--white);
  border: 1px solid var(--border); border-left: 3px solid transparent;
  border-radius: var(--r);
}
.reg-card:first-child  { border-left-color: var(--navy); }
.reg-card:nth-child(2) { border-left-color: var(--cyan); }
.reg-card:nth-child(3) { border-left-color: var(--cyan); }
.reg-card:last-child   { border-left-color: var(--amber); }
.reg-name { font-weight: 700; font-size: 13px; margin-bottom: 3px; color: var(--text-dark); }
.reg-desc { font-size: 12px; color: var(--text-muted); line-height: 1.55; }
.caution-box {
  margin-top: 1.75rem; padding: 1.1rem 1.25rem;
  background: var(--amber-light); border-radius: var(--r); border-left: 3px solid var(--amber);
}
.caution-box p { font-size: 13px; color: #5C3A0A; line-height: 1.6; }

/* ── FAQ ── */
#faq { background: var(--white); }
.faq-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: start; }
.faq-list { border-top: 1px solid var(--border); }
details.faq-item { border-bottom: 1px solid var(--border); }
summary.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  padding: 1.2rem 0; cursor: pointer; list-style: none;
  font-size: 15px; font-weight: 600; color: var(--text-dark); user-select: none; transition: color 0.2s;
}
summary.faq-q::-webkit-details-marker { display: none; }
summary.faq-q:hover { color: var(--green); }
.faq-icon { font-size: 20px; color: var(--green); flex-shrink: 0; transition: transform 0.2s; font-weight: 300; line-height: 1; }
details[open] .faq-icon { transform: rotate(45deg); }
.faq-a { padding: 0 2rem 1.25rem 0; font-size: 14px; color: var(--text-muted); line-height: 1.75; max-width: 640px; }

/* ── CONTACT — dark ── */
#contact { background: var(--navy); padding: 6rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
#contact h2 { color: #fff; margin-bottom: 1rem; }
#contact .lead { color: rgba(255,255,255,0.58); font-size: 15px; line-height: 1.7; }
.contact-meta { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.c-point { display: flex; align-items: flex-start; gap: 12px; }
.c-icon { width: 34px; height: 34px; border-radius: 7px; background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.c-label { font-size: 11px; color: rgba(255,255,255,0.32); margin-bottom: 2px; font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.08em; }
.c-val { font-size: 14px; color: rgba(255,255,255,0.82); font-weight: 600; }
.wp-block {
  margin-top: 2.5rem; padding: 1.1rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r);
  display: flex; align-items: center; gap: 1.25rem;
}
.wp-icon { width: 42px; height: 42px; background: rgba(255,255,255,0.07); border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wp-title { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.82); margin-bottom: 2px; }
.wp-sub { font-size: 12px; color: rgba(255,255,255,0.32); }
.wp-dl { margin-left: auto; font-size: 13px; font-weight: 700; color: #7ECC87; text-decoration: none; flex-shrink: 0; }
.wp-dl:hover { color: #fff; }
/* Form */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { margin-bottom: 12px; }
.f-label { display: block; font-size: 11px; font-weight: 600; font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.09em; color: rgba(255,255,255,0.38); margin-bottom: 6px; }
.f-input, .f-select {
  width: 100%; padding: 10px 13px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.13); border-radius: var(--r);
  color: #fff; font-family: var(--font); font-size: 14px; transition: border-color 0.2s; appearance: none;
}
.f-input:focus, .f-select:focus { outline: none; border-color: var(--green); }
.f-input::placeholder { color: rgba(255,255,255,0.22); }
.f-select option { background: var(--navy); color: #fff; }
.f-submit {
  width: 100%; padding: 13px; margin-top: 4px;
  background: var(--green); color: #fff; border: none; border-radius: var(--r);
  font-family: var(--font); font-size: 15px; font-weight: 700; cursor: pointer; transition: background 0.2s;
}
.f-submit:hover { background: var(--green-dark); }
.f-note { font-size: 12px; color: rgba(255,255,255,0.22); margin-top: 10px; line-height: 1.5; }

/* ── FOOTER ── */
footer {
  background: #07111F; border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 2.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.28); }
.footer-links { display: flex; gap: 1.75rem; white-space: nowrap;}
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.28); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--green); }

/* ── ANIM ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
.fu  { animation: fadeUp 0.5s ease forwards; }
.d1  { animation-delay: 0.1s; opacity: 0; }
.d2  { animation-delay: 0.22s; opacity: 0; }
.d3  { animation-delay: 0.34s; opacity: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-grid,.why-grid,.assess-grid,.software-grid,.reg-grid,.contact-grid,.faq-layout { grid-template-columns: minmax(0, 1fr); }
  .sector-grid,.risks-grid,.proof-grid {
    /* grid-template-columns: 1fr 1fr;  */
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .scenarios-grid { grid-template-columns: 1fr; }
  .phase-row { grid-template-columns: 40px 1fr; }
  .phase-outputs { display: none; }
  nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .container { padding: 0 1.25rem; }
  section { padding: 4rem 0; }
  .form-row { grid-template-columns: 1fr; }
  .output-pill {
    text-overflow: ellipsis;
    overflow: hidden;
    display: inline-block;
    width: 100%;
  }
  .compare-table {
    table-layout: fixed;
  }
}


.feedback {
  --gap: 30px;
  --duration: 60s;
  --scroll-start: 0;
  --scroll-end: calc(-100% - var(--gap));
}
.feedback_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  grid-gap: var(--gap);
  gap: var(--gap);
  width: 100%;
  visibility: inherit;
  -webkit-transform: translate(0);
  transform: translate(0);
  color: #51c435;
  font-size: 50px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
@media screen and (max-width: 1440px) {
  .feedback_title {
    font-size: 45px;
  }
}
@media screen and (max-width: 1280px) {
  .feedback_title {
    font-size: 41px;
  }
}
@media screen and (max-width: 1120px) {
  .feedback_title {
    font-size: 37px;
  }
}
@media screen and (max-width: 960px) {
  .feedback_title {
    font-size: 34px;
  }
}
@media screen and (max-width: 767px) {
  .feedback_title {
    font-size: 30px;
  }
}
@media screen and (max-width: 660px) {
  .feedback_title {
    font-size: 20px;
  }
}
.feedback_title_wrap {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: var(--gap);
  gap: var(--gap);
  min-width: 100%;
  -webkit-animation: scroll-x var(--duration) linear infinite;
  animation: scroll-x var(--duration) linear infinite;
}
.feedback_wrap {
  padding-top: 120px;
}
@media screen and (max-width: 1440px) {
  .feedback_wrap {
    padding-top: 108px;
  }
}
@media screen and (max-width: 1280px) {
  .feedback_wrap {
    padding-top: 98px;
  }
}
@media screen and (max-width: 1120px) {
  .feedback_wrap {
    padding-top: 89px;
  }
}
@media screen and (max-width: 960px) {
  .feedback_wrap {
    padding-top: 81px;
  }
}
@media screen and (max-width: 767px) {
  .feedback_wrap {
    padding-top: 40px;
  }
}
@media screen and (max-width: 660px) {
  .feedback_wrap {
    padding-top: 24px;
  }
}
.feedback_form {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 30px;
}
@media screen and (max-width: 1440px) {
  .feedback_form {
    grid-gap: 27px;
  }
}
@media screen and (max-width: 1280px) {
  .feedback_form {
    grid-gap: 25px;
  }
}
@media screen and (max-width: 1120px) {
  .feedback_form {
    grid-gap: 23px;
  }
}
@media screen and (max-width: 960px) {
  .feedback_form {
    grid-gap: 21px;
  }
}
@media screen and (max-width: 767px) {
  .feedback_form {
    grid-gap: 20px;
  }
}
@media screen and (max-width: 660px) {
  .feedback_form {
    grid-gap: 16px;
  }
}
@media screen and (max-width: 480px) {
  .feedback_form {
    grid-gap: 8px;
  }
}
.feedback_form_input {
  background: transparent;
  color: #fff;
  width: 100%;
  font-family: Noto Sans, sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: normal;
  border: none;
  /* border-bottom: 1px solid rgba(0, 0, 0, 0.2); */
  border-bottom: 1px solid rgba(255,255,255,0.13);
  padding-bottom: 16px;
  outline: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 1440px) {
  .feedback_form_input {
    font-size: 23px;
  }
}
@media screen and (max-width: 1280px) {
  .feedback_form_input {
    font-size: 21px;
  }
}
@media screen and (max-width: 1120px) {
  .feedback_form_input {
    font-size: 19px;
  }
}
@media screen and (max-width: 960px) {
  .feedback_form_input {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .feedback_form_input {
    font-size: 16px;
  }
}
.feedback_form_input::-webkit-input-placeholder {
  opacity: 0.5;
}
.feedback_form_input::-moz-placeholder {
  opacity: 0.5;
}
.feedback_form_input:-ms-input-placeholder {
  opacity: 0.5;
}
.feedback_form_input::-ms-input-placeholder {
  opacity: 0.5;
}
.feedback_form_input::-webkit-input-placeholder {
  opacity: 0.5;
}
.feedback_form_input::-moz-placeholder {
  opacity: 0.5;
}
.feedback_form_input:-ms-input-placeholder {
  opacity: 0.5;
}
.feedback_form_input::-ms-input-placeholder {
  opacity: 0.5;
}
.feedback_form_input::placeholder {
  opacity: 0.5;
}
.feedback_form_input:focus {
  /* border-color: #000; */
  border-color: #3BB34A;
}
.feedback_form_error {
  position: absolute;
  top: 100%;
  left: 0;
  font-weight: 400;
  font-size: 12px;
  line-height: 22px;
  color: #d8544f;
  display: none;
  border-top: 1px solid #d8544f;
  width: 100%;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}
.feedback_form_error-active {
  display: block;
}
.feedback_fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 30px;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  grid-row-gap: 56px;
  row-gap: 56px;
  grid-column: 2 / 12;
}
@media screen and (max-width: 1440px) {
  .feedback_fields {
    grid-row-gap: 51px;
    row-gap: 51px;
  }
}
@media screen and (max-width: 1280px) {
  .feedback_fields {
    grid-row-gap: 46px;
    row-gap: 46px;
  }
}
@media screen and (max-width: 1120px) {
  .feedback_fields {
    grid-row-gap: 42px;
    row-gap: 42px;
  }
}
@media screen and (max-width: 960px) {
  .feedback_fields {
    grid-row-gap: 40px;
    row-gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .feedback_fields {
    grid-column: 1 / 13;
  }
}
@media screen and (max-width: 660px) {
  .feedback_fields {
    grid-row-gap: 20px;
    row-gap: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.feedback_field {
  position: relative;
}
.feedback_field:nth-last-child(3) {
  grid-column: 1 / 3;
}
.feedback_field:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media screen and (max-width: 660px) {
  .feedback_field:last-child {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.feedback_field:last-child .btn {
  min-width: 290px;
  font-size: 25px;
  text-transform: uppercase;
  justify-content: center;
  color: #fff;
  background-color: #3BB34A;
}
@media screen and (max-width: 1440px) {
  .feedback_field:last-child .btn {
    font-size: 23px;
  }
}
@media screen and (max-width: 1280px) {
  .feedback_field:last-child .btn {
    font-size: 21px;
  }
}
@media screen and (max-width: 1120px) {
  .feedback_field:last-child .btn {
    font-size: 19px;
  }
}
@media screen and (max-width: 960px) {
  .feedback_field:last-child .btn {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .feedback_field:last-child .btn {
    font-size: 16px;
  }
}
@media screen and (max-width: 660px) {
  .feedback_field:last-child .btn {
    font-size: 15px;
    min-width: 160px;
  }
}
@media screen and (max-width: 480px) {
  .feedback_field:last-child .btn {
    font-size: 14px;
  }
}
@media screen and (max-width: 1440px) {
  .feedback_result {
    font-size: 18px;
  }
}
@media screen and (max-width: 1280px) {
  .feedback_result {
    font-size: 17px;
  }
}
@media screen and (max-width: 1120px) {
  .feedback_result {
    font-size: 16px;
  }
}
@media screen and (max-width: 660px) {
  .feedback_result {
    font-size: 15px;
  }
}
@media screen and (max-width: 480px) {
  .feedback_result {
    font-size: 14px;
  }
}
.feedback_result_text-error {
  color: #d8544f;
}
@-webkit-keyframes scroll-x {
  from {
    -webkit-transform: translateX(var(--scroll-start));
    transform: translateX(var(--scroll-start));
  }
  to {
    -webkit-transform: translateX(var(--scroll-end));
    transform: translateX(var(--scroll-end));
  }
}
@keyframes scroll-x {
  from {
    -webkit-transform: translateX(var(--scroll-start));
    transform: translateX(var(--scroll-start));
  }
  to {
    -webkit-transform: translateX(var(--scroll-end));
    transform: translateX(var(--scroll-end));
  }
}

