:root {
  --ink: #10211f;
  --muted: #526864;
  --deep: #063b34;
  --deep-2: #032923;
  --teal: #087f73;
  --aqua: #11b3a1;
  --mint: #dff7f3;
  --surface: #f4f8f7;
  --line: #dce8e5;
  --white: #fff;
  --header: 78px;
  --shadow: 0 20px 55px rgba(6, 59, 52, .1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header) + 18px); }
body { margin: 0; background: var(--surface); color: var(--ink); font: 400 16px/1.65 'Poppins', Arial, sans-serif; -webkit-font-smoothing: antialiased; }
body.nav-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; }
.container { width: min(100% - 40px, 1180px); margin-inline: auto; }
.narrow { max-width: 930px; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 20000; padding: 10px 14px; border-radius: 8px; background: #fff; color: var(--deep); font-weight: 700; transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: sticky; top: 0; z-index: 9999; min-height: var(--header); border-bottom: 1px solid rgba(6,59,52,.08); background: rgba(255,255,255,.96); box-shadow: 0 8px 30px rgba(6,59,52,.07); backdrop-filter: blur(12px); }
.nav-row { display: flex; min-height: var(--header); align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; flex: 0 0 auto; text-decoration: none; }
.brand img { display: block; width: auto; height: 48px; object-fit: contain; }
.main-nav ul { display: flex; align-items: center; gap: clamp(12px,1.35vw,22px); margin: 0; padding: 0; list-style: none; }
.main-nav a { display: block; color: var(--ink); font-size: .86rem; font-weight: 650; text-decoration: none; white-space: nowrap; }
.main-nav a:hover, .main-nav a:focus-visible, .main-nav a[aria-current="page"] { color: var(--teal); }
.main-nav a.nav-cta { padding: 10px 15px; border-radius: 9px; background: var(--deep); color: #fff; box-shadow: 0 8px 22px rgba(6,59,52,.15); }
.main-nav a.nav-cta:hover, .main-nav a.nav-cta:focus-visible, .main-nav a.nav-cta[aria-current="page"] { background: var(--teal); color: #fff; }
.main-nav .back-link { padding: 8px 10px; border: 1px solid rgba(17,179,161,.28); border-radius: 9px; background: rgba(17,179,161,.06); }
.menu-toggle { display: none; flex-direction: column; gap: 6px; padding: 8px; border: 0; border-radius: 8px; background: transparent; }
.menu-toggle span { width: 29px; height: 3px; border-radius: 99px; background: var(--deep); transition: .2s ease; }
.menu-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.hero, .subhero { position: relative; overflow: hidden; background: radial-gradient(circle at 85% 15%, rgba(17,179,161,.22), transparent 30%), linear-gradient(135deg, #032923 0%, #074e44 100%); color: #fff; }
.hero::after, .subhero::after { position: absolute; right: -130px; bottom: -230px; width: 470px; height: 470px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; content: ''; }
.hero { padding: clamp(72px,10vw,128px) 0; }
.subhero { padding: clamp(68px,8vw,104px) 0; text-align: center; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1.2fr) minmax(330px,.8fr); gap: clamp(38px,7vw,88px); align-items: center; }
.hero h1, .subhero h1 { max-width: 900px; margin: 14px 0 20px; color: #fff; font-size: clamp(2.25rem,5vw,4.2rem); font-weight: 900; letter-spacing: -.045em; line-height: 1.06; }
.subhero h1 { margin-inline: auto; font-size: clamp(2.1rem,4.6vw,3.65rem); }
.lead { max-width: 780px; margin: 0; color: rgba(255,255,255,.82); font-size: clamp(1.02rem,2vw,1.2rem); }
.subhero .lead { margin-inline: auto; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--aqua); font-size: .77rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero .eyebrow, .subhero .eyebrow, .cta .eyebrow { color: #68e5d5; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: inherit; gap: 13px; margin-top: 30px; }
.subhero .hero-actions { justify-content: center; }
.btn { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 12px 22px; border: 0; border-radius: 10px; font-family: inherit; font-weight: 750; text-decoration: none; cursor: pointer; transition: transform .18s ease,background .18s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--aqua); color: #032923; box-shadow: 0 13px 30px rgba(17,179,161,.22); }
.btn-primary:hover { background: #42dbc8; }
.btn-ghost { border: 1px solid rgba(255,255,255,.34); background: rgba(255,255,255,.06); color: #fff; }
.btn-light { background: #fff; color: var(--deep); }

.hero-panel { padding: clamp(24px,4vw,38px); border: 1px solid rgba(255,255,255,.14); border-radius: 24px; background: rgba(255,255,255,.08); box-shadow: 0 26px 70px rgba(0,0,0,.16); backdrop-filter: blur(10px); }
.panel-label { margin: 0 0 20px; color: #68e5d5; font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero-panel ol { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; counter-reset: edu-step; }
.hero-panel li { position: relative; display: grid; grid-template-columns: 28px 1fr; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.12); counter-increment: edu-step; }
.hero-panel li:last-child { border-bottom: 0; }
.hero-panel li::before { display: grid; width: 27px; height: 27px; place-items: center; border-radius: 50%; background: var(--aqua); color: var(--deep-2); font-size: .72rem; font-weight: 900; content: counter(edu-step); }
.hero-panel strong, .hero-panel span { display: block; }
.hero-panel strong { color: #fff; }
.hero-panel span { color: rgba(255,255,255,.68); font-size: .86rem; }

.section { padding: clamp(64px,9vw,106px) 0; }
.section-tint { background: #eaf4f2; }
.section-heading { max-width: 760px; margin: 0 auto 46px; text-align: center; }
.section-heading h2, .split h2, .cta h2 { margin: 9px 0 14px; color: var(--deep); font-size: clamp(1.8rem,4vw,2.75rem); line-height: 1.16; letter-spacing: -.025em; }
.section-heading p, .split > div > p { color: var(--muted); }
.cards { display: grid; gap: 24px; }
.cards-3 { grid-template-columns: repeat(3,minmax(0,1fr)); }
.cards-2 { grid-template-columns: repeat(2,minmax(0,1fr)); }
.offer-card, .info-card { display: flex; min-height: 100%; flex-direction: column; padding: clamp(26px,4vw,36px); border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 14px 44px rgba(6,59,52,.06); }
.offer-card { border-bottom: 4px solid transparent; }
.offer-card:hover { border-bottom-color: var(--aqua); box-shadow: var(--shadow); transform: translateY(-4px); }
.offer-card h3, .info-card h3 { margin: 18px 0 10px; color: var(--deep); font-size: 1.22rem; }
.offer-card p, .info-card p { margin: 0; color: var(--muted); font-size: .94rem; }
.offer-card a { margin-top: auto; padding-top: 24px; color: var(--teal); font-weight: 750; text-decoration: none; }
.icon, .course-icon, .resource-icon { display: grid; flex: 0 0 auto; width: 52px; height: 52px; place-items: center; border-radius: 14px; font-size: 1.35rem; }
.google { background: #eef4ff; color: #2563eb; }
.microsoft { background: #eef8ff; color: #0078d4; }
.training { background: #e8faf6; color: var(--teal); }
.security { background: #e9f7f4; color: #087f73; }
.privacy { background: #f4efff; color: #6d28d9; }
.info-card > i { color: var(--teal); font-size: 1.8rem; }

.split { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(320px,.9fr); gap: clamp(38px,7vw,84px); align-items: center; }
.text-link { display: inline-block; margin-top: 14px; color: var(--teal); font-weight: 750; text-decoration: none; }
.benefits { display: grid; gap: 15px; }
.benefits > div { display: grid; grid-template-columns: 42px 1fr; gap: 2px 15px; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.benefits i { grid-row: 1/3; color: var(--teal); font-size: 1.35rem; }
.benefits h3, .benefits p { margin: 0; }
.benefits h3 { color: var(--deep); font-size: 1rem; }
.benefits p { color: var(--muted); font-size: .86rem; }
.steps { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 42px 1fr; gap: 15px; padding: 18px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.steps > li > span { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; background: var(--deep); color: #fff; font-weight: 800; }
.steps h3, .steps p { margin: 0; }
.steps h3 { color: var(--deep); font-size: 1rem; }
.steps p { color: var(--muted); font-size: .86rem; }
.note { margin-top: 22px !important; padding: 16px 18px; border-left: 4px solid var(--aqua); border-radius: 0 10px 10px 0; background: rgba(255,255,255,.64); font-size: .88rem; }
.check-list { display: grid; gap: 10px; margin: 24px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 29px; color: var(--muted); }
.check-list li::before { position: absolute; left: 0; color: var(--teal); font-weight: 900; content: '✓'; }
.format-card, .note-card { padding: clamp(27px,4vw,40px); border-radius: 22px; background: var(--deep); box-shadow: var(--shadow); color: rgba(255,255,255,.78); }
.format-card i { color: #67e8d6; font-size: 1.5rem; }
.format-card h3, .note-card h3 { margin: 8px 0 7px; color: #fff; }
.format-card p, .note-card p { margin: 0; }
.format-card hr { margin: 24px 0; border: 0; border-top: 1px solid rgba(255,255,255,.14); }

.course-card { display: flex; gap: 20px; padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 13px 38px rgba(6,59,52,.05); }
.course-card h3, .course-card p { margin: 0; }
.course-card h3 { color: var(--deep); }
.course-card p { margin-top: 7px; color: var(--muted); font-size: .92rem; }
.resource-grid { display: grid; gap: 18px; }
.resource-card { display: grid; grid-template-columns: 60px 1fr; gap: 22px; padding: clamp(24px,4vw,36px); border: 1px solid var(--line); border-radius: 20px; background: #fff; color: inherit; box-shadow: 0 13px 38px rgba(6,59,52,.05); text-decoration: none; }
.resource-card:hover { border-color: rgba(17,179,161,.55); box-shadow: var(--shadow); }
.resource-card span:not(.resource-icon) { color: var(--teal); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.resource-card h2 { margin: 3px 0 7px; color: var(--deep); font-size: 1.25rem; }
.resource-card p { margin: 0 0 8px; color: var(--muted); }
.resource-card strong { color: var(--teal); }

.cta { padding: clamp(50px,7vw,76px) 0; background: linear-gradient(135deg,var(--deep-2),var(--deep)); color: #fff; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.cta h2 { color: #fff; }
.cta p { max-width: 750px; margin: 0; color: rgba(255,255,255,.74); }

.contact-layout { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(300px,.75fr); gap: clamp(30px,6vw,68px); align-items: start; }
.contact-form { padding: clamp(24px,4vw,40px); border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; margin-bottom: 7px; color: var(--deep); font-size: .86rem; font-weight: 700; }
.field label span { color: var(--muted); font-weight: 500; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 14px; border: 1px solid #cadad6; border-radius: 10px; background: #fff; color: var(--ink); font: inherit; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--aqua); outline: 3px solid rgba(17,179,161,.14); }
.field textarea { resize: vertical; }
.privacy-row { display: flex; gap: 11px; align-items: flex-start; color: var(--muted); font-size: .78rem; }
.privacy-row input { margin-top: 4px; }
.privacy-row a { color: var(--teal); font-weight: 700; }
.form-submit { width: 100%; margin-top: 20px; }
.turnstile-slot:not(:empty) { margin-top: 18px; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.contact-side { display: grid; gap: 15px; }
.contact-card { display: grid; grid-template-columns: 42px 1fr; gap: 15px; padding: 20px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.contact-card > i { color: var(--teal); font-size: 1.25rem; }
.contact-card span { display: block; margin-bottom: 4px; color: var(--muted); font-size: .73rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.contact-card a { display: block; color: var(--deep); font-weight: 700; text-decoration: none; }
.contact-card p { margin: 0; color: var(--deep); }
.contact-note { padding: 24px; border-radius: 16px; background: #e4f4f1; }
.contact-note p { color: var(--muted); }
.contact-note a { color: var(--teal); font-weight: 750; text-decoration: none; }
.legal-content { max-width: 880px; padding: clamp(28px,5vw,54px); border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: 0 15px 44px rgba(6,59,52,.06); }
.legal-content h2 { margin: 34px 0 9px; color: var(--deep); font-size: 1.3rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--muted); }
.legal-content a { color: var(--teal); font-weight: 700; }

.site-footer { padding: 58px 0 22px; background: #021e1a; color: rgba(255,255,255,.68); border-top: 3px solid var(--aqua); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: clamp(30px,6vw,74px); }
.footer-brand img { width: auto; height: 52px; filter: drop-shadow(0 4px 12px rgba(0,0,0,.15)); }
.footer-brand p { max-width: 460px; }
.site-footer h2 { margin: 0 0 14px; color: #fff; font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; }
.site-footer ul { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.site-footer a { color: rgba(255,255,255,.7); text-decoration: none; }
.site-footer a:hover { color: #67e8d6; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: .78rem; }
.footer-bottom p { margin: 0; }

@media (max-width: 1180px) {
  :root { --header: 70px; }
  .brand img { height: 43px; }
  .menu-toggle { display: flex; }
  .main-nav { position: fixed; top: var(--header); right: 0; left: 0; display: none; height: calc(100dvh - var(--header)); padding: 20px; overflow-y: auto; background: #fff; }
  .main-nav.active { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 6px; }
  .main-nav a { padding: 11px 7px; white-space: normal; }
  .main-nav .nav-cta, .main-nav .back-link { margin-top: 5px; text-align: center; }
}

@media (max-width: 820px) {
  .hero-grid, .split, .contact-layout { grid-template-columns: 1fr; }
  .cards-3 { grid-template-columns: 1fr; }
  .cards-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px,1180px); }
  .brand img { height: 38px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .course-card, .resource-card { grid-template-columns: 1fr; }
  .course-card { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
