:root {
  --navy: #07315f;
  --blue: #0b5fa5;
  --sky: #d9f3fb;
  --mint: #a8dce3;
  --sage: #6d8a72;
  --ink: #142033;
  --muted: #5f6f82;
  --line: #d8e3ee;
  --paper: #f8fbfd;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(7, 49, 95, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 56px);
  background: rgba(248, 251, 253, 0.9);
  border-bottom: 1px solid rgba(216, 227, 238, 0.82);
  backdrop-filter: blur(18px);
}

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--mint));
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--navy);
}

.brand-logo {
  width: clamp(112px, 13vw, 154px);
  height: auto;
  border-radius: 0;
  background: transparent;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2vw, 28px);
  color: #25425f;
  font-size: 0.95rem;
  font-weight: 650;
}

.nav a {
  padding: 8px 0;
}

.nav a:hover {
  color: var(--blue);
}

.nav-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(560px, 1.15fr);
  align-items: center;
  min-height: calc(100svh - clamp(155px, 14vw, 202px));
  gap: clamp(26px, 4vw, 58px);
  padding: clamp(28px, 4vw, 56px) clamp(20px, 5vw, 72px) clamp(32px, 5vw, 68px);
  background:
    linear-gradient(115deg, rgba(7, 49, 95, 0.97), rgba(10, 76, 130, 0.9) 52%, rgba(217, 243, 251, 0.62)),
    url("pack-reset-admin-serenite.png") center / cover;
  color: var(--white);
}

.hero-content {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--mint);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.65rem, 5.2vw, 5.75rem);
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: normal;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.2rem;
  line-height: 1.18;
}

.hero-lead {
  max-width: 670px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--mint);
  border-color: rgba(7, 49, 95, 0.16);
  color: var(--navy);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.hero-visual {
  align-self: center;
  justify-self: end;
  width: min(100%, 780px);
  border-radius: 8px;
  overflow: hidden;
  background: #dcecf6;
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  min-height: 132px;
  padding: 26px clamp(18px, 3vw, 42px);
  background: var(--white);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  color: var(--navy);
  font-size: 1.04rem;
}

.proof-strip span {
  margin-top: 8px;
  color: var(--muted);
}

.section,
.method,
.e-invoice,
.news-preview,
.image-band,
.about-section,
.checkup-section,
.contact {
  padding: clamp(56px, 9vw, 112px) clamp(20px, 5vw, 72px);
  scroll-margin-top: 86px;
}

.section-heading {
  max-width: 860px;
  margin-bottom: clamp(28px, 5vw, 54px);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 64px);
  max-width: 1080px;
}

.reset-definition {
  margin-top: 12px;
}

.reset-outcomes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(28px, 5vw, 52px);
}

.reset-outcomes article {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  border: 1px solid rgba(11, 95, 165, 0.22);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 20px 44px rgba(7, 49, 95, 0.11);
}

.reset-outcomes article::before,
.service-grid article::before,
.package-grid article::before,
.about-grid article::before,
.news-card::before,
.article-list-card::before,
.contact-form::before,
.timeline li::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--mint));
}

.reset-outcomes strong,
.reset-outcomes span {
  display: block;
}

.reset-outcomes strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.reset-outcomes span {
  margin-top: 10px;
  color: var(--muted);
}

.intro-grid p,
.method-copy p,
.image-band p,
.about-grid p,
.contact p {
  margin: 0;
  color: #42576d;
  font-size: 1.08rem;
}

.pricing-note,
.section-note {
  display: inline-flex;
  margin: clamp(22px, 4vw, 34px) 0 0;
  border: 1px solid rgba(11, 95, 165, 0.22);
  border-radius: 8px;
  padding: 12px 16px;
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 14px 28px rgba(7, 49, 95, 0.08);
  font-size: 1rem;
  font-weight: 850;
}

.section-note {
  margin-top: 20px;
}

.reset-timeframe {
  margin: 24px 0 0;
  color: #42576d;
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.55;
}

.reset-results {
  display: grid;
  gap: 10px;
  margin: 22px 0 24px;
  padding: 0;
  list-style: none;
}

.reset-results li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-weight: 700;
}

.reset-results li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 900;
}

.checkup-section {
  background: linear-gradient(180deg, #eef8fb 0%, #f8fbfd 100%);
  border-top: 1px solid rgba(11, 95, 165, 0.2);
  border-bottom: 1px solid rgba(11, 95, 165, 0.2);
  padding-top: clamp(68px, 10vw, 128px);
  padding-bottom: clamp(68px, 10vw, 128px);
}

.checkup-intro {
  max-width: 920px;
  margin: 18px 0 0;
  color: #42576d;
  font-size: 1.08rem;
}

.checkup-time {
  display: inline-flex;
  margin: 22px 0 0;
  border: 1px solid rgba(11, 95, 165, 0.22);
  border-radius: 8px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 14px 28px rgba(7, 49, 95, 0.08);
  font-weight: 850;
}

.checkup-tool {
  position: relative;
  overflow: hidden;
  max-width: 980px;
  border: 1px solid rgba(11, 95, 165, 0.3);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 28px 68px rgba(7, 49, 95, 0.18);
}

.checkup-tool::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--mint));
}

.checkup-progress {
  display: grid;
  gap: 10px;
  padding: 30px clamp(22px, 4vw, 38px) 0;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 850;
}

.checkup-progress div {
  overflow: hidden;
  height: 10px;
  border-radius: 999px;
  background: #e5eef7;
}

.checkup-progress i {
  display: block;
  width: 12.5%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--mint));
  transition: width 220ms ease;
}

.checkup-card {
  padding: clamp(22px, 4vw, 38px);
}

.checkup-card h3 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.checkup-start-text {
  max-width: 720px;
  margin: 0;
  color: #42576d;
  font-size: 1.06rem;
}

.checkup-options {
  display: grid;
  gap: 12px;
}

.checkup-option {
  width: 100%;
  border: 1px solid rgba(11, 95, 165, 0.2);
  border-radius: 8px;
  padding: 16px 18px;
  background: #fbfdff;
  color: #25425f;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.35;
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.checkup-option:hover,
.checkup-option.is-selected {
  border-color: rgba(11, 95, 165, 0.48);
  background: #eef9fc;
  transform: translateY(-1px);
}

.checkup-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px;
  margin-top: 26px;
}

.checkup-result .checkup-actions > * {
  flex: 1 1 220px;
  min-height: 48px;
  margin-top: 0;
  text-align: center;
}

.checkup-result .button {
  min-height: 52px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 850;
}

.button.secondary {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.checkup-actions .button {
  cursor: pointer;
}

.checkup-actions .button.primary {
  box-shadow: 0 14px 30px rgba(7, 49, 95, 0.14);
}

.checkup-start-button {
  min-height: 58px;
  padding: 16px 26px;
  font-size: 1.05rem;
  box-shadow: 0 18px 36px rgba(7, 49, 95, 0.18);
}

.checkup-form {
  display: grid;
  gap: 16px;
  max-width: 620px;
}

.checkup-form p {
  margin: 0 0 6px;
  color: #42576d;
  font-size: 1.05rem;
}

.checkup-form .required-note,
.contact-form .required-note {
  margin: -4px 0 4px;
  font-size: 0.9rem;
  font-weight: 750;
}

.checkup-result {
  display: grid;
  gap: 18px;
}

.checkup-result-badge {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(11, 95, 165, 0.18);
  border-radius: 8px;
  padding: 9px 12px;
  background: #f4f9fc;
  color: var(--navy);
  font-weight: 850;
}

.checkup-result p {
  max-width: 760px;
  margin: 0;
  color: #42576d;
  font-size: 1.06rem;
}

.checkup-reco {
  display: grid;
  gap: 6px;
  max-width: 620px;
  border-left: 4px solid var(--mint);
  padding: 14px 16px;
  background: #f8fbfd;
  color: var(--navy);
  font-weight: 850;
}

.method .eyebrow,
.contact .eyebrow {
  margin: 0 0 14px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-section {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.about-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(11, 95, 165, 0.22);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 34px);
  background: var(--white);
  box-shadow: 0 20px 44px rgba(7, 49, 95, 0.11);
}

.about-grid h3 {
  margin-bottom: 14px;
}

.local-logos {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0 0;
}

.local-logos img {
  width: 88px;
  height: 88px;
  border: 1px solid rgba(11, 95, 165, 0.18);
  border-radius: 8px;
  object-fit: contain;
  background: transparent;
  padding: 6px;
}

.local-logos img:nth-child(2) {
  width: 118px;
}

.local-logos img[src$="logo-madein95.webp"] {
  border: 0;
  padding: 0;
  background: transparent;
}

.local-logos img[src$="logo-les-entrepreneurs.webp"] {
  border: 0;
  padding: 0;
  background: transparent;
}


.benefit-intro {
  max-width: 1040px;
  margin: 0 0 clamp(22px, 4vw, 36px);
  border: 1px solid rgba(11, 95, 165, 0.22);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 32px);
  background: var(--white);
  box-shadow: 0 18px 38px rgba(7, 49, 95, 0.09);
}

.benefit-intro h3 {
  margin-bottom: 18px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.benefit-intro ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-intro li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-weight: 750;
}

.benefit-intro li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 900;
}

.service-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.package-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-grid article,
.package-grid article,
.contact-form {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(11, 95, 165, 0.22);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 44px rgba(7, 49, 95, 0.11);
}

.service-grid article {
  min-height: 250px;
  padding: 28px;
}

.icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  background: #edf7fb;
  color: var(--blue);
  font-size: 2rem;
  font-weight: 800;
}

.service-grid p,
.package-grid p,
.package-grid li {
  color: var(--muted);
}

.package-promise {
  color: var(--navy);
  font-weight: 850;
}

.e-invoice {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 7vw, 86px);
  background: #dcecf6;
  overflow: hidden;
}

.e-invoice.is-secondary {
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.48fr);
  padding-top: clamp(44px, 6vw, 72px);
  padding-bottom: clamp(44px, 6vw, 72px);
  background: #f4f9fc;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.e-invoice-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 28px;
  color: #42576d;
  font-size: 1.08rem;
}

.check-panel {
  max-width: 620px;
  border: 1px solid rgba(11, 95, 165, 0.26);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 38px rgba(7, 49, 95, 0.1);
}

.check-panel h3 {
  margin-bottom: 18px;
}

.check-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-panel li {
  position: relative;
  padding-left: 34px;
  color: #334254;
  font-weight: 650;
}

.check-panel li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: #397fbd;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 900;
}

.e-invoice-media {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  align-items: end;
  gap: 16px;
}

.e-invoice-media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(11, 95, 165, 0.14);
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(7, 49, 95, 0.14);
}

.e-invoice-media img:first-child {
  transform: translateY(42px);
}

.e-invoice-media img:nth-child(3) {
  grid-column: 1 / -1;
  width: min(72%, 560px);
  justify-self: end;
  aspect-ratio: 16 / 9;
}

.e-invoice.is-secondary .e-invoice-media {
  grid-template-columns: 1fr;
}

.e-invoice.is-secondary .e-invoice-media img {
  aspect-ratio: 1;
}

.e-invoice.is-secondary .e-invoice-media img:not(:first-child) {
  display: none;
}

.news-preview {
  background: #f4f9fc;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.news-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 42px);
  max-width: 1040px;
  border: 1px solid rgba(11, 95, 165, 0.22);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 28px);
  background: var(--white);
  box-shadow: 0 20px 44px rgba(7, 49, 95, 0.11);
}

.news-card-media {
  display: block;
  min-width: 0;
}

.news-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: 8px;
}

.news-card p:not(.package-level) {
  color: var(--muted);
}

.news-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--blue);
  font-weight: 850;
}

.article-hero {
  padding: clamp(28px, 3vw, 40px) clamp(20px, 5vw, 72px) clamp(48px, 7vw, 80px);
  background: linear-gradient(135deg, var(--navy), #0b5fa5);
  color: var(--white);
}

.article-hero h1 {
  max-width: 920px;
  font-size: clamp(3rem, 7vw, 6.6rem);
}

.article-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.16rem;
}

.thanks-hero {
  padding-top: clamp(34px, 5vw, 62px);
  padding-bottom: clamp(36px, 6vw, 70px);
}

.thanks-hero h1 {
  max-width: 760px;
  font-size: clamp(2.2rem, 5vw, 4.1rem);
}

.thanks-hero p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 18px;
  font-size: 1.08rem;
}

.article-page {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 80px);
  padding: clamp(52px, 8vw, 96px) clamp(20px, 5vw, 72px);
  background: var(--white);
}

.article-list {
  display: grid;
  gap: 18px;
  padding: clamp(52px, 8vw, 96px) clamp(20px, 5vw, 72px);
  background: var(--white);
}

.article-list-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  max-width: 1120px;
  border: 1px solid rgba(11, 95, 165, 0.22);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 30px);
  background: #f8fbfd;
  box-shadow: 0 20px 44px rgba(7, 49, 95, 0.11);
}

.article-list-card:hover {
  border-color: rgba(11, 95, 165, 0.38);
}

.article-list-card img {
  width: 100%;
  min-height: 230px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}

.article-list-card h2 {
  max-width: 760px;
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
}

.article-list-card p:not(.package-level) {
  color: var(--muted);
}

.article-date,
.article-meta {
  margin: 16px 0 22px;
  color: var(--muted);
  font-weight: 700;
}

.article-header {
  align-self: start;
  position: sticky;
  top: 104px;
}

.article-header h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.article-image-link {
  display: block;
}

.article-header img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.article-body {
  max-width: 780px;
  color: #334254;
  font-size: 1.08rem;
}

.article-body p {
  margin: 0 0 22px;
}

.article-body h3 {
  margin: 36px 0 12px;
  font-size: 1.48rem;
}

.article-body ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.article-body li {
  position: relative;
  padding-left: 28px;
}

.article-body li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 900;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
}

.method {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 88px);
  background: #eaf5f7;
}

.method-copy {
  align-self: center;
}

.method-copy p {
  margin: 22px 0 30px;
}

.method-copy .button {
  background: var(--navy);
  color: var(--white);
}

.timeline {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.timeline li {
  position: relative;
  overflow: hidden;
  min-height: 98px;
  padding: 22px 24px 22px 76px;
  border: 1px solid rgba(11, 95, 165, 0.24);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(7, 49, 95, 0.09);
  counter-increment: step;
}

.timeline li::before {
  content: counter(step);
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 850;
}

.timeline strong,
.timeline span {
  display: block;
}

.timeline strong {
  color: var(--navy);
  font-size: 1.08rem;
}

.timeline span {
  margin-top: 4px;
  color: var(--muted);
}

.package-grid article {
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.package-grid .featured {
  border-color: rgba(11, 95, 165, 0.52);
  background: linear-gradient(180deg, #ffffff, #eef9fc);
  box-shadow: 0 24px 54px rgba(7, 49, 95, 0.15);
}

.package-level {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.package-price {
  display: inline-flex;
  margin: 18px 0 0;
  border: 1px solid rgba(11, 95, 165, 0.18);
  border-radius: 8px;
  padding: 8px 12px;
  background: #f4f9fc;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 850;
}

.package-grid ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.package-grid .button {
  width: 100%;
  margin-top: auto;
}

.package-grid ul + .button {
  padding-top: 0;
}

.package-grid ul {
  margin-bottom: 28px;
}

.package-grid li {
  position: relative;
  padding-left: 24px;
}

.package-grid li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 900;
}

.image-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
  background: var(--navy);
  color: var(--white);
}

.image-band img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
}

.image-band h2,
.image-band p {
  color: var(--white);
}

.image-band p:last-child {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  gap: clamp(30px, 7vw, 88px);
  background: var(--white);
}

.contact h2 {
  margin-bottom: 22px;
}

.contact-notes {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  color: var(--navy);
  font-weight: 750;
}

.contact-notes span {
  padding-left: 18px;
  border-left: 3px solid var(--mint);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 36px);
}

.required-star {
  color: #c93434;
  font-weight: 900;
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd9e6;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfdff;
  font: inherit;
}

textarea {
  resize: vertical;
}

a:focus-visible,
button:focus-visible,
input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(11, 95, 165, 0.14);
}

.contact-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.privacy-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.45;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  display: grid;
  gap: 24px;
  padding: clamp(34px, 5vw, 56px) clamp(20px, 5vw, 72px) 28px;
  background: #061f3f;
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(0, 0.7fr));
  gap: clamp(24px, 5vw, 56px);
}

.footer-grid > div,
.footer-grid nav {
  display: grid;
  min-width: 0;
  align-content: start;
  gap: 10px;
}

.footer-grid strong,
.footer-brand {
  color: var(--white);
  font-weight: 850;
}

.footer-grid a,
.footer-grid span,
.footer-grid p {
  min-width: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  overflow-wrap: anywhere;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-slogan {
  color: var(--white);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  font-weight: 850;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  font-weight: 650;
}

.footer-update {
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 980px) {
  .hero,
  .method,
  .e-invoice,
  .news-card,
  .article-page,
  .article-list-card,
  .image-band,
  .contact {
    grid-template-columns: 1fr;
  }

  .article-header {
    position: static;
  }

  .hero {
    min-height: auto;
  }

  .news-card img {
    max-height: 360px;
  }

  .article-list-card img {
    max-height: 360px;
  }

  .e-invoice-media img:first-child {
    transform: none;
  }

  .proof-strip,
  .service-grid,
  .package-grid,
  .about-grid,
  .reset-outcomes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 10px 18px 8px;
  }

  .brand-logo {
    width: 108px;
  }

  .nav-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
  }

  .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--navy);
  }

  .nav {
    position: absolute;
    z-index: 30;
    top: calc(100% - 1px);
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(11, 95, 165, 0.22);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 20px 44px rgba(7, 49, 95, 0.11);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 13px 12px;
  }

  .hero {
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .proof-strip,
  .intro-grid,
  .benefit-intro ul,
  .service-grid,
  .package-grid,
  .about-grid,
  .reset-outcomes,
  .news-card,
  .article-page,
  .article-list-card,
  .e-invoice-media {
    grid-template-columns: 1fr;
  }

  .reset-definition {
    margin-top: 0;
  }

  .article-hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  .thanks-hero h1 {
    font-size: clamp(2.05rem, 10vw, 3.1rem);
  }

  .article-header img {
    max-height: 320px;
    object-fit: cover;
  }

  .service-grid article {
    min-height: auto;
  }

  .site-footer {
    padding: 30px 18px 24px;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 22px;
    width: 100%;
  }

  .footer-grid > div,
  .footer-grid nav {
    justify-items: center;
    width: min(100%, 310px);
    gap: 8px;
  }

  .footer-brand {
    font-size: 0.92rem;
  }

  .footer-slogan {
    font-size: 1.12rem;
  }

  .footer-grid p,
  .footer-grid a,
  .footer-grid span {
    font-size: 0.84rem;
    line-height: 1.45;
    text-align: center;
  }

  .footer-bottom {
    justify-content: center;
    gap: 6px;
    padding-top: 16px;
    text-align: center;
    font-size: 0.78rem;
  }

  .footer-bottom span {
    width: 100%;
  }

}

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


.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 5vw, 54px);
  background: rgba(7, 49, 95, 0.76);
}

.image-lightbox.is-open {
  display: flex;
}

.image-lightbox img {
  max-width: min(100%, 980px);
  max-height: 88svh;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(4, 28, 54, 0.36);
  background: var(--white);
}

.image-lightbox button {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}


.cookie-banner {
  position: fixed;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  left: clamp(14px, 3vw, 28px);
  z-index: 90;
  margin: 0 auto;
  max-width: 980px;
  border: 1px solid rgba(11, 95, 165, 0.24);
  border-radius: 8px;
  background: rgba(248, 251, 253, 0.98);
  box-shadow: 0 24px 58px rgba(7, 49, 95, 0.2);
  color: var(--ink);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(16px, 3vw, 28px);
  align-items: center;
  padding: clamp(18px, 3vw, 24px);
}

.cookie-banner h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.08rem;
}

.cookie-banner p {
  margin: 0;
  color: #42576d;
  font-size: 0.94rem;
  line-height: 1.5;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-banner .button {
  min-height: 42px;
  padding: 10px 14px;
  font-size: 0.9rem;
}

.button.ghost-light,
.footer-cookie-link {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.button.ghost-light {
  border: 1px solid rgba(11, 95, 165, 0.22);
  color: var(--navy);
  text-decoration: none;
}

.footer-cookie-link {
  min-width: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  text-align: left;
  overflow-wrap: anywhere;
}

.footer-cookie-link:hover,
.footer-cookie-link:focus-visible {
  color: var(--white);
}

@media (max-width: 720px) {
  .cookie-banner-content {
    grid-template-columns: 1fr;
  }

  .cookie-banner-actions {
    justify-content: stretch;
  }

  .cookie-banner .button {
    width: 100%;
  }

  .footer-cookie-link {
    font-size: 0.84rem;
    text-align: center;
  }
}
