:root {
  --color-primary: #0f3157;
  --color-secondary: #159b97;
  --color-bg: #f7faf9;
  --color-text: #17283d;
  --color-muted: #627386;
  --color-border: #dce8eb;
  --color-white: #ffffff;
  --color-warm: #fbfaf6;
  --color-soft-teal: #e9f6f4;
  --shadow-soft: 0 18px 44px rgba(15, 49, 87, 0.08);
  --shadow-card: 0 10px 28px rgba(15, 49, 87, 0.06);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-muted {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0)),
    var(--color-bg);
}

.section-warm {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0)),
    var(--color-warm);
}

.section-dark {
  background:
    linear-gradient(135deg, rgba(21, 155, 151, 0.13), transparent 34%),
    var(--color-primary);
  color: var(--color-white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  color: var(--color-primary);
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand-logo:not([src]),
.brand-logo.is-hidden {
  display: none;
}

.brand-fallback {
  display: none;
  align-items: center;
  gap: 10px;
}

.brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1.12;
}

.brand-copy strong {
  color: var(--color-primary);
  font-size: 1.02rem;
}

.brand-copy span {
  color: var(--color-muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-white);
  font-size: 0.88rem;
  letter-spacing: 0;
}

.brand-text {
  max-width: 150px;
  line-height: 1.15;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--color-muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a:focus {
  color: var(--color-secondary);
}

.nav-cta {
  padding: 11px 17px;
  border: 1px solid var(--color-secondary);
  border-radius: var(--radius);
  color: var(--color-primary);
  background: rgba(21, 155, 151, 0.08);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--color-primary);
}

.hero {
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(21, 155, 151, 0.1), transparent 44%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfa 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--color-secondary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  color: var(--color-primary);
  font-size: clamp(2.25rem, 4.3vw, 4.5rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--color-primary);
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--color-primary);
  font-size: 1.08rem;
  line-height: 1.3;
}

.hero-lead,
.section-heading p,
.service-card p,
.price-card p,
.process-list p,
.benefits-grid p,
.contact-info p,
.faq-answer p {
  color: var(--color-muted);
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 32px;
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
}

.button-primary {
  padding: 13px 22px;
  background: var(--color-secondary);
  box-shadow: 0 14px 30px rgba(21, 155, 151, 0.2);
  color: var(--color-white);
}

.button-secondary {
  padding: 12px 18px;
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.74);
  color: var(--color-primary);
}

.hero-facts {
  display: grid;
  max-width: 680px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.hero-facts div {
  padding: 17px 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-card);
}

.hero-facts dt {
  color: var(--color-muted);
  font-size: 0.8rem;
}

.hero-facts dd {
  margin: 4px 0 0;
  color: var(--color-primary);
  font-weight: 800;
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 16px;
  min-height: 430px;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(233, 246, 244, 0.72)),
    var(--color-white);
  box-shadow: var(--shadow-soft);
}

.hero-panel-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 6px 2px;
}

.hero-panel-head div {
  display: grid;
  gap: 2px;
}

.hero-panel-head span {
  color: var(--color-muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-panel-head strong {
  color: var(--color-primary);
  font-size: 1.18rem;
}

.hero-logo-mark {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.growth-card {
  position: relative;
  height: auto;
  min-height: 270px;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.growth-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(21, 155, 151, 0.12);
  border-radius: 8px;
  pointer-events: none;
}

.growth-card::after {
  content: "";
  position: absolute;
  right: 26px;
  bottom: 26px;
  width: 118px;
  height: 8px;
  border-radius: 999px;
  background: rgba(21, 155, 151, 0.18);
  transform: rotate(-38deg);
  transform-origin: right center;
}

.chart-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  color: var(--color-primary);
  font-weight: 800;
}

.chart-head strong {
  color: var(--color-secondary);
  font-size: 1rem;
}

.chart,
.premium-checklist {
  position: relative;
  z-index: 1;
}

.chart {
  display: grid;
  height: 205px;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 16px;
  padding: 18px 0 0;
  border-bottom: 2px solid var(--color-border);
}

.premium-checklist {
  display: grid;
  gap: 12px;
}

.premium-checklist div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid rgba(220, 232, 235, 0.82);
  border-radius: 8px;
  background: rgba(247, 250, 249, 0.74);
}

.premium-checklist span {
  display: grid;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-soft-teal);
  border: 1px solid rgba(21, 155, 151, 0.22);
}

.premium-checklist span::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-secondary);
}

.premium-checklist p {
  margin: 0;
  color: var(--color-primary);
  font-weight: 800;
}

.chart span {
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--color-secondary), var(--color-primary));
}

.analysis-line {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.analysis-line span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-secondary);
}

.analysis-line p {
  margin: 0;
  color: var(--color-muted);
  font-weight: 700;
}

.signal-card {
  position: relative;
  z-index: 3;
  display: flex;
  width: 100%;
  max-width: 100%;
  justify-self: end;
  gap: 12px;
  padding: 17px 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.signal-icon {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(20, 157, 152, 0.13);
  color: var(--color-secondary);
  font-weight: 900;
}

.signal-card strong {
  color: var(--color-primary);
}

.signal-card p {
  margin: 4px 0 0;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.section-heading {
  max-width: 730px;
  margin: 0 auto 42px;
  text-align: center;
}

.align-left {
  margin-left: 0;
  text-align: left;
}

.services-grid,
.pricing-grid,
.benefits-grid,
.situations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card,
.price-card,
.benefits-grid article,
.situations-grid article {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.service-card {
  padding: 26px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(21, 155, 151, 0.36);
  box-shadow: 0 16px 34px rgba(15, 49, 87, 0.09);
}

.service-card-wide {
  grid-column: span 3;
}

.card-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--color-soft-teal);
  color: var(--color-secondary);
  font-weight: 900;
}

.situations-grid article {
  padding: 28px;
  background: rgba(255, 255, 255, 0.78);
}

.situations-grid span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--color-secondary);
  font-weight: 900;
}

.situations-grid h3 {
  font-size: 1.18rem;
}

.future-note,
.pricing-footnote {
  margin-top: 24px;
  padding: 20px 22px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: var(--color-muted);
  box-shadow: var(--shadow-card);
}

.future-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--color-primary);
}

.future-note p,
.pricing-footnote {
  margin-bottom: 0;
}

.detail-panel,
.feature-card {
  padding: 30px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-card);
}

.detail-panel h3,
.feature-card h2 {
  margin-bottom: 18px;
}

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

.clean-list li {
  position: relative;
  padding-left: 26px;
  color: var(--color-muted);
}

.clean-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-secondary);
}

.sectors-grid,
.program-list {
  display: grid;
  gap: 12px;
}

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

.sectors-grid span,
.program-list span {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 13px 15px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  color: var(--color-primary);
  font-weight: 800;
  box-shadow: var(--shadow-card);
}

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

.two-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.feature-card {
  height: 100%;
}

.feature-card p:last-child {
  margin-bottom: 0;
}

.price-note {
  margin-top: 18px;
  color: var(--color-primary);
  font-weight: 900;
}

.price-card {
  padding: 30px;
}

.price-card.featured {
  border-color: rgba(20, 157, 152, 0.5);
  background: linear-gradient(180deg, #ffffff, #f8fcfb);
  box-shadow: 0 18px 40px rgba(15, 49, 87, 0.1);
}

.badge {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(20, 157, 152, 0.12);
  color: var(--color-secondary);
  font-size: 0.82rem;
  font-weight: 800;
}

.price {
  margin-bottom: 12px;
  color: var(--color-primary);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.1;
}

.price span {
  color: var(--color-muted);
  font-size: 1rem;
  font-weight: 700;
}

.price-vat {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 7px;
  background: var(--color-soft-teal);
  color: var(--color-primary);
  font-size: 0.92rem;
  font-weight: 900;
}

.text-link {
  color: var(--color-secondary);
  font-weight: 900;
}

.split-layout,
.faq-layout,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 60px;
  align-items: start;
}

.process-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: flex;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.process-list span {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 7px;
  background: var(--color-soft-teal);
  color: var(--color-secondary);
  font-weight: 900;
}

.benefits-grid article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.section-dark h2,
.section-dark h3 {
  color: var(--color-white);
}

.section-dark .section-heading p,
.section-dark .benefits-grid p {
  color: rgba(255, 255, 255, 0.74);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: var(--color-primary);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-align: left;
}

.faq-question span {
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: rgba(20, 157, 152, 0.12);
  color: var(--color-secondary);
  font-size: 1.2rem;
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-item.is-open .faq-question span {
  background: var(--color-secondary);
  color: var(--color-white);
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-cards a,
.contact-cards p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--color-primary);
  font-weight: 800;
}

.contact-cards span {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 7px;
  background: rgba(20, 157, 152, 0.12);
  color: var(--color-secondary);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--color-primary);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--color-border);
  border-radius: 7px;
  background: var(--color-white);
  color: var(--color-text);
  font: inherit;
  padding: 11px 12px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(20, 157, 152, 0.18);
  border-color: var(--color-secondary);
}

.full-span {
  grid-column: 1 / -1;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--color-primary);
  font-weight: 800;
}

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

.privacy-note a,
.policy-content a {
  color: var(--color-secondary);
  font-weight: 800;
}

.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(21, 155, 151, 0.28);
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 160ms ease, transform 160ms ease, background 160ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus {
  background: var(--color-secondary);
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--color-border);
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-inner a {
  color: var(--color-white);
  font-weight: 700;
}

.policy-page {
  background:
    linear-gradient(115deg, rgba(21, 155, 151, 0.08), transparent 42%),
    var(--color-bg);
}

.policy-content {
  max-width: 860px;
  padding: 42px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.policy-content h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.policy-content h2 {
  margin-top: 34px;
  font-size: clamp(1.32rem, 2vw, 1.72rem);
}

.policy-content p {
  color: var(--color-muted);
}

.policy-updated {
  margin-top: 34px;
  font-weight: 800;
}

.policy-nav {
  justify-content: flex-end;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    top: 78px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
  }

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

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

  .hero-grid,
  .split-layout,
  .faq-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .pricing-grid,
  .benefits-grid,
  .situations-grid,
  .sectors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-cards {
    grid-template-columns: 1fr;
  }

  .service-card-wide {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .brand-copy strong {
    font-size: 0.95rem;
  }

  .brand-copy span {
    max-width: 132px;
    font-size: 0.7rem;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-actions,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-facts,
  .services-grid,
  .pricing-grid,
  .benefits-grid,
  .situations-grid,
  .sectors-grid,
  .program-list,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .service-card-wide {
    grid-column: auto;
  }

  .hero-panel {
    min-height: 360px;
    padding: 18px;
  }

  .growth-card {
    min-height: 0;
    padding: 18px;
  }

  .hero-panel-head {
    align-items: flex-start;
  }

  .premium-checklist div {
    align-items: flex-start;
  }

  .signal-card {
    width: 100%;
    justify-self: stretch;
    margin-top: 16px;
  }

  .process-list li {
    padding: 18px;
  }

  .footer-inner div {
    flex-direction: column;
    gap: 8px;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
  }

  .policy-content {
    padding: 28px 20px;
  }
}
