:root {
  --green-950: #073d2a;
  --green-900: #075c3b;
  --green-800: #087647;
  --green-700: #089956;
  --green-600: #10b86a;
  --mint: #dff9e7;
  --cream: #f5f4eb;
  --ink: #10251c;
  --muted: #607068;
  --line: #dfe7e2;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fbfcf9;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(251, 252, 249, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(7, 61, 42, .09);
}
.notice-bar { background: var(--green-950); color: white; }
.notice-content { min-height: 36px; display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 11px; }
.notice-content p { margin: 0; color: #dff6e8; }
.notice-content > a { margin-left: 6px; color: #8ff0b6; font-weight: 800; }
.notice-content > a span { margin-left: 4px; }
.notice-pulse { width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: #5cf69b; box-shadow: 0 0 0 0 rgba(92,246,155,.65); animation: noticePulse 2s infinite; }
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand img { width: 46px; height: 46px; border-radius: 12px; object-fit: cover; }
.brand-copy { display: grid; gap: 3px; }
.brand-copy strong { font-size: 15px; letter-spacing: .03em; color: var(--green-950); }
.brand-copy span { color: var(--muted); font-size: 11px; }
nav { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 700; }
nav > a:not(.nav-cta):hover { color: var(--green-700); }
.nav-cta { background: var(--green-950); color: white; padding: 13px 20px; border-radius: 10px; transition: .2s ease; }
.nav-cta:hover { background: var(--green-700); transform: translateY(-1px); }

.hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 76px 0 68px;
  background: linear-gradient(135deg, #f7f7ef 0%, #f9fcf6 52%, #eef9f1 100%);
}
.hero::before { content: ""; position: absolute; inset: 0; opacity: .025; background-image: radial-gradient(#073d2a 1px, transparent 1px); background-size: 18px 18px; }
.hero-orb { position: absolute; border-radius: 999px; filter: blur(1px); pointer-events: none; }
.orb-one { width: 440px; height: 440px; right: -170px; top: -150px; background: rgba(16,184,106,.11); animation: orbFloat 9s ease-in-out infinite; }
.orb-two { width: 270px; height: 270px; left: -150px; bottom: -120px; border: 56px solid rgba(7,92,59,.055); animation: orbFloat 11s ease-in-out infinite reverse; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .78fr; gap: clamp(54px, 8vw, 110px); align-items: center; }
.eyebrow { width: fit-content; display: inline-flex; align-items: center; gap: 9px; color: var(--green-800); background: white; border: 1px solid #d9eadf; border-radius: 999px; padding: 9px 14px; font-size: 12px; font-weight: 800; letter-spacing: .08em; box-shadow: 0 8px 30px rgba(7,61,42,.05); }
.eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: var(--green-600); box-shadow: 0 0 0 5px rgba(16,184,106,.12); }
.hero h1 { margin: 24px 0 22px; font-size: clamp(46px, 5.1vw, 70px); line-height: 1.01; letter-spacing: -.055em; max-width: 720px; font-weight: 800; }
.hero h1 em { display: block; color: var(--green-700); font-style: normal; }
.hero-lead { margin: 0; max-width: 650px; color: #4b6157; font-size: clamp(17px, 1.7vw, 20px); line-height: 1.6; animation: heroEnter .75s .32s both; }
.hero-actions { display: grid; grid-template-columns: 1.08fr .92fr; gap: 12px; max-width: 650px; margin: 32px 0 28px; animation: heroEnter .75s .44s both; }
.button { position: relative; overflow: hidden; display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-height: 54px; padding: 0 24px; border: 0; border-radius: 11px; font-size: 15px; font-weight: 800; transition: transform .25s ease, background .25s ease, box-shadow .25s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--green-700); color: white; box-shadow: 0 15px 32px rgba(8,153,86,.23); }
.button-primary:hover { background: var(--green-800); box-shadow: 0 18px 36px rgba(8,118,71,.25); }
.button-secondary { border: 1px solid #cbdad2; background: white; color: var(--green-950); box-shadow: 0 12px 28px rgba(7,61,42,.08); }
.button-secondary:hover { border-color: #a9c9b7; background: #f5fbf7; box-shadow: 0 16px 34px rgba(7,61,42,.12); }
.hero-button { min-height: 68px; justify-content: space-between; padding: 0 22px; border-radius: 14px; text-align: left; font-size: 15px; line-height: 1.25; }
.button-shine::after { content: ""; position: absolute; inset: -40% auto -40% -45%; width: 28%; transform: rotate(18deg); background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent); animation: buttonShine 4.2s ease-in-out infinite; }
.button span { font-size: 20px; line-height: 1; }
.text-link { font-size: 14px; font-weight: 800; border-bottom: 1px solid var(--ink); padding-bottom: 3px; }
.trust-line { display: flex; flex-wrap: wrap; gap: 17px; color: #4f6158; font-size: 12px; font-weight: 700; animation: heroEnter .75s .55s both; }
.trust-line span { display: flex; align-items: center; gap: 6px; }
.trust-line i { width: 19px; height: 19px; display: grid; place-items: center; border-radius: 50%; background: var(--mint); color: var(--green-800); font-size: 11px; font-style: normal; }

.hero-visual { position: relative; background: var(--green-950); color: white; border-radius: 22px; padding: 30px; box-shadow: 0 35px 80px rgba(7,61,42,.22); transform: rotate(1deg); animation: visualEnter .9s .2s both, visualFloat 6s 1.2s ease-in-out infinite; }
.hero-visual::before { content: ""; position: absolute; inset: 10px -10px -10px 10px; z-index: -1; border: 1px solid rgba(8,153,86,.35); border-radius: 22px; }
.visual-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.14); }
.visual-top span { font-size: 10px; letter-spacing: .12em; color: #a8d5bc; }
.visual-top b { font-size: 11px; background: rgba(16,184,106,.18); color: #bdf8d3; border-radius: 999px; padding: 8px 10px; }
.profile-card { display: grid; grid-template-columns: auto 1fr; gap: 15px; align-items: center; padding: 26px 0 22px; }
.profile-avatar { width: 55px; height: 55px; display: grid; place-items: center; border-radius: 50%; background: var(--green-600); color: white; font-weight: 900; letter-spacing: -.04em; }
.profile-card strong { display: block; line-height: 1.25; font-size: 16px; }
.profile-card p { margin: 6px 0 0; color: #adbeb6; font-size: 12px; line-height: 1.45; }
.analysis-list { background: white; color: var(--ink); border-radius: 14px; padding: 18px; }
.analysis-list > p { margin: 0 0 10px; color: var(--muted); font-size: 9px; letter-spacing: .1em; font-weight: 800; }
.analysis-row { min-height: 58px; display: grid; grid-template-columns: 28px 1fr 24px; align-items: center; gap: 10px; border-top: 1px solid #edf0ec; }
.analysis-row > span { color: #8c9b94; font-size: 9px; font-weight: 800; }
.analysis-row strong { display: block; font-size: 11px; }
.analysis-row small { display: block; color: #87968f; font-size: 9px; margin-top: 3px; }
.analysis-row > i { width: 20px; height: 20px; display: grid; place-items: center; justify-self: end; border-radius: 50%; background: var(--mint); color: var(--green-700); font-size: 10px; font-style: normal; font-weight: 900; }
.opportunity-list { background: white; color: var(--ink); border-radius: 14px; padding: 18px; }
.opportunity-list > p { margin: 0 0 10px; color: var(--muted); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; font-weight: 800; }
.opportunity { min-height: 46px; display: grid; grid-template-columns: 30px 1fr 10px; align-items: center; gap: 10px; border-top: 1px solid #edf0ec; }
.opportunity strong { font-size: 12px; }
.job-index { color: #8c9b94; font-size: 10px; font-weight: 700; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-600); }
.visual-seal { position: absolute; right: -34px; bottom: -33px; width: 96px; height: 96px; display: grid; place-content: center; text-align: center; border-radius: 50%; background: var(--cream); color: var(--green-950); border: 6px solid #f7f7ef; box-shadow: 0 14px 34px rgba(7,61,42,.18); transform: rotate(-7deg); }
.visual-seal small { font-size: 9px; letter-spacing: .1em; }
.visual-seal strong { font-size: 13px; }
.floating-tip { position: absolute; left: -44px; bottom: -34px; display: grid; grid-template-columns: 32px 1fr; align-items: center; gap: 9px; min-width: 190px; padding: 11px 13px; border: 1px solid #dcebe2; border-radius: 12px; background: white; color: var(--ink); box-shadow: 0 18px 45px rgba(7,61,42,.18); transform: rotate(-1deg); animation: tipFloat 4s ease-in-out infinite; }
.floating-tip > span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; background: var(--mint); color: var(--green-700); font-weight: 900; }
.floating-tip p { margin: 0; }
.floating-tip small { display: block; color: #819087; font-size: 7px; letter-spacing: .1em; }
.floating-tip strong { display: block; font-size: 10px; margin-top: 2px; }

.job-strip { background: var(--green-700); color: white; }
.strip-content { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.strip-content > p { margin: 0; font-size: 14px; font-weight: 800; white-space: nowrap; }
.job-tags { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 9px; }
.job-tags span { border: 1px solid rgba(255,255,255,.26); border-radius: 999px; padding: 8px 12px; color: #eafff1; font-size: 11px; font-weight: 700; }

.section { padding: 112px 0; }
.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 90px; align-items: end; margin-bottom: 48px; }
.kicker { display: block; color: var(--green-700); font-size: 11px; font-weight: 900; letter-spacing: .15em; margin-bottom: 14px; }
.section h2 { margin: 0; font-size: clamp(36px, 4vw, 54px); line-height: 1.08; letter-spacing: -.045em; }
.section-heading > p { margin: 0; color: var(--muted); line-height: 1.7; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.benefit-card { position: relative; min-height: 292px; padding: 30px; border: 1px solid var(--line); border-radius: 16px; background: white; overflow: hidden; transition: .25s ease; }
.benefit-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(7,61,42,.09); border-color: #bbd8c8; }
.benefit-card::after { content: ""; position: absolute; width: 120px; height: 120px; border-radius: 50%; right: -70px; bottom: -70px; background: var(--mint); }
.benefit-number { display: inline-block; color: var(--green-700); font-size: 12px; font-weight: 900; padding-bottom: 14px; border-bottom: 2px solid var(--green-600); }
.benefit-card h3 { margin: 52px 0 14px; font-size: 21px; letter-spacing: -.025em; }
.benefit-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.analysis-section { position: relative; overflow: hidden; background: linear-gradient(135deg, #edf9f1 0%, #fbfcf8 58%, #f6f3e8 100%); }
.analysis-section::before { content: ""; position: absolute; width: 520px; height: 520px; right: -280px; top: -280px; border: 70px solid rgba(16,184,106,.055); border-radius: 50%; }
.analysis-grid { position: relative; display: grid; grid-template-columns: .86fr 1.1fr; align-items: center; gap: clamp(60px, 9vw, 120px); }
.analysis-copy h2 { max-width: 560px; }
.analysis-copy > p { max-width: 570px; margin: 24px 0 30px; color: var(--muted); line-height: 1.75; }
.diagnosis-card { position: relative; padding: 30px; background: white; border: 1px solid #dce7df; border-radius: 22px; box-shadow: 0 28px 70px rgba(7,61,42,.12); }
.diagnosis-card::before { content: ""; position: absolute; inset: 12px -12px -12px 12px; z-index: -1; border: 1px solid rgba(8,153,86,.28); border-radius: 22px; }
.diagnosis-head { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.diagnosis-head small { display: block; color: var(--green-700); font-size: 9px; letter-spacing: .12em; font-weight: 900; }
.diagnosis-head strong { display: block; margin-top: 6px; font-size: 17px; }
.diagnosis-head > span { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 13px; background: var(--green-950); color: white; font-size: 13px; font-weight: 900; }
.diagnosis-item { min-height: 92px; display: grid; grid-template-columns: 28px 1fr auto; gap: 15px; align-items: center; border-bottom: 1px solid var(--line); }
.diagnosis-item > i { color: var(--green-700); font-size: 10px; font-style: normal; font-weight: 900; }
.diagnosis-item strong { display: block; font-size: 13px; }
.diagnosis-item p { margin: 5px 0 0; color: var(--muted); font-size: 11px; }
.diagnosis-item > b { padding: 6px 8px; border-radius: 999px; background: var(--mint); color: var(--green-900); font-size: 8px; letter-spacing: .08em; }
.diagnosis-result { display: grid; grid-template-columns: 38px 1fr; gap: 12px; align-items: center; margin-top: 22px; padding: 16px; border-radius: 13px; background: var(--green-950); color: white; }
.diagnosis-result > span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 10px; background: var(--green-600); font-weight: 900; }
.diagnosis-result p { margin: 0; }
.diagnosis-result small { display: block; color: #91c7a8; font-size: 8px; letter-spacing: .1em; }
.diagnosis-result strong { display: block; margin-top: 4px; font-size: 12px; }

.testimonials { position: relative; overflow: hidden; background: #fbfcf9; }
.testimonials::before { content: "“"; position: absolute; right: 4vw; top: -105px; color: rgba(8,153,86,.05); font-family: Georgia, serif; font-size: 420px; line-height: 1; pointer-events: none; }
.testimonial-heading { position: relative; grid-template-columns: 1fr; }
.testimonial-grid { position: relative; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.testimonial-card { min-height: 310px; display: flex; flex-direction: column; padding: 32px; border: 1px solid #d9e7de; border-radius: 18px; background: white; box-shadow: 0 16px 42px rgba(7,61,42,.065); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.testimonial-card:hover { transform: translateY(-5px); border-color: #b8d7c5; box-shadow: 0 24px 55px rgba(7,61,42,.11); }
.testimonial-quote { height: 48px; color: var(--green-600); font-family: Georgia, serif; font-size: 76px; line-height: .8; }
.testimonial-card blockquote { margin: 20px 0 28px; color: #40554b; font-family: Georgia, "Times New Roman", serif; font-size: 17px; font-style: italic; line-height: 1.68; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 20px; border-top: 1px solid #e6ece8; }
.testimonial-author > span { width: 44px; height: 44px; display: grid; place-items: center; flex: 0 0 44px; border-radius: 50%; background: var(--green-950); color: #8be5ad; font-size: 14px; font-weight: 900; }
.testimonial-author p { margin: 0; }
.testimonial-author strong { display: block; font-size: 13px; }
.testimonial-author small { display: block; margin-top: 4px; color: var(--green-700); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.testimonial-card:nth-child(2) { transition-delay: .08s; }
.testimonial-card:nth-child(3) { transition-delay: .14s; }
.testimonial-card:nth-child(4) { transition-delay: .2s; }

.registration { background: var(--green-950); color: white; position: relative; overflow: hidden; }
.registration::after { content: ""; position: absolute; width: 540px; height: 540px; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; left: -300px; bottom: -300px; box-shadow: 0 0 0 70px rgba(255,255,255,.02), 0 0 0 140px rgba(255,255,255,.015); }
.registration-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .78fr 1.08fr; gap: clamp(60px, 9vw, 120px); align-items: start; }
.kicker.light { color: #77e2a4; }
.registration-copy { position: sticky; top: 120px; padding-top: 20px; }
.registration-copy > p { color: #b7c8c0; line-height: 1.7; font-size: 16px; margin: 24px 0 40px; }
.registration-points { display: grid; gap: 18px; }
.registration-points > div { display: grid; grid-template-columns: 40px 1fr; gap: 13px; align-items: start; }
.registration-points > div > span { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid rgba(119,226,164,.4); border-radius: 50%; color: #77e2a4; font-size: 12px; font-weight: 900; }
.registration-points p { margin: 0; }
.registration-points strong { display: block; font-size: 14px; }
.registration-points small { display: block; color: #9fb2aa; font-size: 12px; margin-top: 4px; }

.form-card { background: white; color: var(--ink); border-radius: 20px; padding: clamp(25px, 4vw, 42px); box-shadow: 0 30px 80px rgba(0,0,0,.2); }
.form-heading { margin-bottom: 28px; }
.form-heading p { color: var(--green-700); font-size: 10px; font-weight: 900; letter-spacing: .15em; margin: 0 0 8px; }
.form-heading h3 { font-size: 31px; letter-spacing: -.035em; margin: 0 0 7px; }
.form-heading span { color: var(--muted); font-size: 13px; }
.form-card > label:not(.consent), .field-row label { display: grid; gap: 8px; margin-bottom: 18px; }
.form-card label > span, fieldset legend { font-size: 12px; font-weight: 800; }
input, textarea { width: 100%; border: 1px solid #dce5df; border-radius: 9px; background: #fbfcfa; color: var(--ink); padding: 14px 15px; outline: none; transition: .2s ease; }
input:focus, textarea:focus { background: white; border-color: var(--green-600); box-shadow: 0 0 0 4px rgba(16,184,106,.1); }
textarea { resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
fieldset { margin: 2px 0 20px; padding: 0; border: 0; }
fieldset legend { margin-bottom: 10px; }
.choice-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.choice { cursor: pointer; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice span { display: block; border: 1px solid #dce5df; border-radius: 999px; padding: 9px 12px; color: #53655c; font-size: 11px; transition: .2s ease; }
.choice:hover span, .choice.selected span { border-color: var(--green-600); background: var(--mint); color: var(--green-900); }
.consent { display: grid; grid-template-columns: 18px 1fr; align-items: start; gap: 10px; margin: 5px 0 20px; color: var(--muted); line-height: 1.45; }
.consent input { width: 17px; height: 17px; accent-color: var(--green-700); margin: 1px 0 0; }
.consent span { font-size: 11px !important; font-weight: 500 !important; }
.button-form { width: 100%; background: var(--green-700); color: white; }
.button-form:hover { background: var(--green-800); }
.form-success { margin: 14px 0 0; padding: 10px 12px; border-radius: 8px; background: var(--mint); color: var(--green-900); font-size: 12px; text-align: center; font-weight: 700; }
.form-note { margin: 14px 0 0; color: #87968f; font-size: 10px; line-height: 1.5; text-align: center; }
.form-security { display: grid; grid-template-columns: 28px 1fr; gap: 9px; align-items: center; margin-top: 15px; padding: 12px; border-radius: 10px; background: #f3faf5; color: var(--green-950); }
.form-security > span { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; background: var(--mint); color: var(--green-700); font-size: 11px; font-weight: 900; }
.form-security p { margin: 0; }
.form-security strong { display: block; font-size: 10px; }
.form-security small { display: block; margin-top: 2px; color: var(--muted); font-size: 8px; line-height: 1.4; }

.employer-section { position: relative; overflow: hidden; background: #0a4934; color: white; }
.employer-section::before { content: "EMPRESAS"; position: absolute; right: -30px; top: 10px; color: rgba(255,255,255,.025); font-size: clamp(100px, 17vw, 240px); line-height: 1; font-weight: 900; letter-spacing: -.07em; pointer-events: none; }
.employer-section::after { content: ""; position: absolute; width: 460px; height: 460px; left: -280px; bottom: -300px; border: 65px solid rgba(127,232,166,.06); border-radius: 50%; }
.employer-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .82fr 1.08fr; align-items: start; gap: clamp(60px, 9vw, 120px); }
.employer-copy { position: sticky; top: 130px; padding-top: 16px; }
.employer-copy h2 { max-width: 520px; }
.employer-copy > p { max-width: 520px; margin: 22px 0 38px; color: #bcd7ca; font-size: 16px; line-height: 1.7; }
.employer-benefits { display: grid; gap: 16px; }
.employer-benefits > div { display: grid; grid-template-columns: 38px 1fr; gap: 12px; align-items: start; padding: 15px 0; border-top: 1px solid rgba(255,255,255,.12); }
.employer-benefits > div > span { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 9px; background: rgba(100,238,156,.12); color: #8eecb5; font-size: 10px; font-weight: 900; }
.employer-benefits p { margin: 0; }
.employer-benefits strong { display: block; font-size: 14px; }
.employer-benefits small { display: block; margin-top: 5px; color: #9fbfb1; font-size: 11px; line-height: 1.45; }
.company-form { position: relative; padding: clamp(25px, 4vw, 42px); border-radius: 22px; background: #f7f5eb; color: var(--ink); box-shadow: 0 32px 80px rgba(0,0,0,.2); }
.company-form::before { content: ""; position: absolute; inset: 12px -12px -12px 12px; z-index: -1; border: 1px solid rgba(143,235,181,.3); border-radius: 22px; }
.company-form-heading { margin-bottom: 28px; }
.company-form-heading p { margin: 0 0 8px; color: var(--green-700); font-size: 10px; font-weight: 900; letter-spacing: .15em; }
.company-form-heading h3 { margin: 0 0 7px; font-size: 31px; letter-spacing: -.035em; }
.company-form-heading span { color: var(--muted); font-size: 13px; }
.company-form > label:not(.consent), .company-form .field-row label { display: grid; gap: 8px; margin-bottom: 18px; }
.company-form label > span { font-size: 12px; font-weight: 800; }
.company-consent { margin-top: 2px; }
.company-button { width: 100%; background: #f0b84d; color: #223027; box-shadow: 0 15px 32px rgba(91,63,12,.18); }
.company-button:hover { background: #f7c766; box-shadow: 0 18px 35px rgba(91,63,12,.24); }
.company-success { margin: 14px 0 0; padding: 10px 12px; border-radius: 8px; background: #dff9e7; color: var(--green-900); font-size: 12px; text-align: center; font-weight: 700; }
.company-note { margin: 14px 0 0; color: #7d8e85; font-size: 10px; line-height: 1.5; text-align: center; }

[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.benefit-card:nth-child(2) { transition-delay: .1s; }
.benefit-card:nth-child(3) { transition-delay: .2s; }
.hero-enter { animation: heroEnter .75s both; }
.enter-one { animation-delay: .05s; }
.enter-two { animation-delay: .16s; }

@keyframes heroEnter { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes visualEnter { from { opacity: 0; transform: translateX(40px) rotate(3deg) scale(.96); } to { opacity: 1; transform: translateX(0) rotate(1deg) scale(1); } }
@keyframes visualFloat { 0%, 100% { translate: 0 0; } 50% { translate: 0 -8px; } }
@keyframes tipFloat { 0%, 100% { translate: 0 0; } 50% { translate: 0 -6px; } }
@keyframes orbFloat { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-18px, 16px) scale(1.04); } }
@keyframes noticePulse { 70% { box-shadow: 0 0 0 7px rgba(92,246,155,0); } 100% { box-shadow: 0 0 0 0 rgba(92,246,155,0); } }
@keyframes buttonShine { 0%, 60% { left: -45%; } 82%, 100% { left: 130%; } }

.faq { background: var(--cream); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.1fr; gap: clamp(60px, 9vw, 120px); }
.faq-grid > div:first-child > p { max-width: 430px; color: var(--muted); line-height: 1.7; margin: 20px 0 26px; }
.button-outline { border: 1px solid var(--green-900); color: var(--green-900); }
.button-outline:hover { background: var(--green-950); color: white; }
.faq-list { border-top: 1px solid #cdd8d1; }
details { border-bottom: 1px solid #cdd8d1; }
summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 23px 0; cursor: pointer; font-weight: 800; font-size: 15px; }
summary::-webkit-details-marker { display: none; }
summary span { color: var(--green-700); font-size: 23px; font-weight: 400; transition: transform .2s ease; }
details[open] summary span { transform: rotate(45deg); }
details p { margin: -5px 0 22px; color: var(--muted); font-size: 14px; line-height: 1.65; max-width: 650px; }

footer { background: #062d20; color: white; padding: 58px 0 26px; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 50px; padding-bottom: 42px; border-bottom: 1px solid rgba(255,255,255,.13); }
.footer-brand .brand-copy strong { color: white; }
.footer-brand .brand-copy span { color: #9bb3a8; }
.footer-top > p { margin: 0; color: #9fb3a9; font-size: 13px; line-height: 1.6; }
.footer-links { display: grid; justify-items: end; gap: 9px; }
.footer-links a { color: #8be5ad; font-size: 12px; font-weight: 800; }
.footer-links a::after { content: "→"; margin-left: 8px; }
.contact-number { margin: 12px 0 0; color: #36624f; font-size: 13px; font-weight: 800; letter-spacing: .02em; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; color: #819c90; font-size: 10px; }
.mobile-cta { display: none; }

@media (max-width: 920px) {
  nav > a:not(.nav-cta) { display: none; }
  .hero { min-height: auto; padding: 66px 0 78px; }
  .hero-grid, .registration-grid, .analysis-grid, .employer-grid { grid-template-columns: 1fr; }
  .hero-content { max-width: 700px; }
  .hero-visual { max-width: 530px; margin: 0 auto; transform: none; }
  .analysis-copy { max-width: 700px; }
  .diagnosis-card { max-width: 620px; }
  .strip-content { align-items: flex-start; flex-direction: column; padding: 22px 0; }
  .job-tags { justify-content: flex-start; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: auto; }
  .benefit-card h3 { margin-top: 35px; }
  .registration-copy { position: static; padding-top: 0; }
  .employer-copy { position: static; padding-top: 0; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-links { justify-items: start; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 28px, 1180px); }
  .site-header { position: relative; }
  .notice-content { min-height: 42px; justify-content: flex-start; }
  .notice-content p { font-size: 9px; line-height: 1.3; }
  .notice-content > a { display: none; }
  .nav-wrap { min-height: 68px; }
  .brand img { width: 40px; height: 40px; }
  .brand-copy span { display: none; }
  nav .nav-cta { display: none; }
  .hero { padding: 54px 0 64px; }
  .hero h1 { font-size: 42px; }
  .hero-actions { grid-template-columns: 1fr; gap: 12px; }
  .button-primary, .button-secondary { width: 100%; }
  .text-link { width: fit-content; }
  .trust-line { display: grid; gap: 10px; }
  .hero-visual { padding: 20px; border-radius: 17px; }
  .visual-top { align-items: flex-start; flex-direction: column; gap: 10px; }
  .visual-seal { right: -5px; bottom: -50px; width: 82px; height: 82px; }
  .floating-tip { left: -5px; bottom: -52px; }
  .job-strip { padding-top: 22px; }
  .section { padding: 82px 0; }
  .section h2 { font-size: 37px; }
  .section-heading { margin-bottom: 34px; }
  .benefit-card { padding: 25px; }
  .diagnosis-card { padding: 20px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-card { min-height: auto; padding: 26px; }
  .diagnosis-item { grid-template-columns: 24px 1fr; }
  .diagnosis-item > b { display: none; }
  .registration { padding-top: 88px; }
  .registration-grid { gap: 48px; }
  .form-card { margin-left: -4px; margin-right: -4px; }
  .company-form { margin-left: -4px; margin-right: -4px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-bottom { flex-direction: column; gap: 10px; padding-bottom: 70px; }
  .mobile-cta { position: fixed; z-index: 40; display: flex; align-items: center; justify-content: space-between; left: 14px; right: 14px; bottom: 14px; min-height: 54px; padding: 0 19px; border-radius: 12px; color: white; background: var(--green-700); box-shadow: 0 14px 35px rgba(7,61,42,.3); font-size: 14px; font-weight: 800; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
