:root {
  --color-navy: #002F41;
  --color-azure: #11aec7;
  --color-orange: #CB7A09;
  --color-text: #575757;
  --color-light: #f5f5f5;
  --color-white: #ffffff;
  --color-border: rgba(0, 47, 65, 0.12);
  --shadow-soft: 0 18px 45px rgba(0, 47, 65, 0.10);
  --radius-md: 8px;
  --radius-lg: 14px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-text);
  background: var(--color-light);
  line-height: 1.6;
}

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

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

p {
  margin-bottom: 0;
}

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

.nav {
  width: min(100% - 32px, var(--max-width));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  color: var(--color-navy);
  font-size: 1.18rem;
  font-weight: 800;
  white-space: nowrap;
}

.brand-logo {
  width: 72px;
  height: 72px;
  display: block;
  object-fit: contain;
  flex: 0 0 auto;
}

.nav-links {
  gap: 22px;
  color: var(--color-navy);
  font-weight: 650;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--color-orange);
}

.nav-actions {
  gap: 10px;
}

.nav-login {
  padding: 10px 4px;
  color: var(--color-navy);
  font-weight: 750;
  line-height: 1.2;
}

.nav-login:hover {
  color: var(--color-orange);
}

.nav-demo-short {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--color-white);
  background: var(--color-orange);
  border-color: var(--color-orange);
}

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

.btn-ghost {
  color: var(--color-navy);
  border-color: var(--color-border);
  background: transparent;
}

.btn-large {
  min-height: 50px;
  padding: 14px 22px;
}

main {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

.deployment-banner {
  margin: 24px 0 18px;
  padding: 14px 18px;
  color: var(--color-navy);
  background: rgba(17, 174, 199, 0.10);
  border: 1px solid rgba(17, 174, 199, 0.24);
  border-radius: var(--radius-md);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 36px;
  align-items: center;
  padding: 72px 48px;
  color: var(--color-white);
  background:
    linear-gradient(135deg, rgba(0, 47, 65, 0.98), rgba(17, 174, 199, 0.78));
  border-radius: var(--radius-lg);
}

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

.eyebrow {
  margin-bottom: 12px;
  color: var(--color-orange);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.final-cta .eyebrow {
  color: #ffd89d;
}

h1 {
  margin-bottom: 20px;
  color: inherit;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-text {
  max-width: 680px;
  margin-bottom: 30px;
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.88);
}

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

.hero-media {
  display: grid;
  gap: 18px;
}

.hero-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  display: block;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.hero-panel {
  padding: 24px;
  color: var(--color-navy);
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  gap: 36px;
  align-items: center;
  margin-top: 28px;
  padding: 58px 48px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 36px rgba(0, 47, 65, 0.07);
}

.page-hero-content {
  max-width: 760px;
}

.page-hero-content p:last-child {
  max-width: 700px;
  font-size: 1.14rem;
}

.page-hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.tools-page-hero {
  color: var(--color-white);
  background:
    linear-gradient(135deg, var(--color-navy), #07566a);
  border: 0;
  border-left: 8px solid var(--color-orange);
}

.tools-page-hero .eyebrow {
  color: #ffd89d;
}

.tools-page-hero .solution-hero-text {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
}

.tools-page-hero .page-hero-image {
  border: 4px solid rgba(255, 255, 255, 0.24);
}

.solution-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.solution-hero-points span {
  padding: 8px 12px;
  color: var(--color-white);
  font-weight: 750;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-md);
}

.solution-section-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.solution-section-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--color-orange);
  background: rgba(203, 122, 9, 0.10);
  border: 1px solid rgba(203, 122, 9, 0.18);
  border-radius: var(--radius-md);
}

.solution-section-icon svg {
  width: 27px;
  height: 27px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section.solution-audience,
.section.solution-key-features,
.section.solution-product-visuals {
  margin-top: 72px;
  padding: 64px 48px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 28px rgba(0, 47, 65, 0.06);
}

.section.solution-audience-manager,
.section.solution-product-visuals {
  background: rgba(0, 47, 65, 0.045);
}

.solution-benefit-grid {
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.solution-benefit-card {
  padding: 30px 24px 26px;
  border-top: 5px solid var(--color-azure);
}

.solution-audience-manager .solution-benefit-card {
  border-top-color: var(--color-orange);
}

.solution-feature-panel {
  margin-top: 0;
  padding: 30px;
}

.product-visual-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.product-visual-card {
  margin: 0;
  padding: 24px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 28px rgba(0, 47, 65, 0.06);
}

.product-visual-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: contain;
  background: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.product-visual-card figcaption {
  margin-top: 12px;
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 650;
}

.tool-card {
  border-left: 5px solid var(--color-azure);
}

.tools-available-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.upcoming-tools {
  width: 100%;
  margin: 96px 0 0;
  padding: 0;
}

.upcoming-tools-panel {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
  padding: 88px 72px 96px;
  background: rgba(17, 174, 199, 0.07);
  border-radius: var(--radius-lg);
}

.upcoming-tools .section-heading {
  margin-bottom: 0;
}

.upcoming-tools-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.upcoming-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-top: 5px solid var(--color-orange);
}

.tools-impact {
  margin-bottom: 104px;
  padding-bottom: 0;
}

.tools-impact .benefits-list {
  gap: 18px;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.tools-impact .benefits-list div {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 28px rgba(0, 47, 65, 0.06);
}

.tools-impact .benefits-list div,
.tools-impact .benefits-list div:nth-child(2),
.tools-impact .benefits-list div:nth-child(-n + 2),
.tools-impact .benefits-list div:last-child {
  border: 1px solid var(--color-border);
}

.tools-final-cta {
  width: 100%;
  margin: 0 0 84px;
  padding: 52px;
}

.offers-page-hero {
  color: var(--color-white);
  grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
  background:
    linear-gradient(135deg, var(--color-navy), #07566a);
  border: 0;
  border-left: 8px solid var(--color-orange);
}

.offers-page-hero .eyebrow {
  color: #ffd89d;
}

.offers-page-hero .offers-hero-text {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
}

.offers-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.offers-hero-points span {
  padding: 8px 12px;
  color: var(--color-white);
  font-weight: 750;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-md);
}

.offers-page-hero .offers-hero-image {
  border: 4px solid rgba(255, 255, 255, 0.24);
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.section.offers-group,
.section.offer-choice {
  margin-top: 72px;
  padding: 64px 48px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 28px rgba(0, 47, 65, 0.06);
}

.offers-group .section-subtitle {
  max-width: 920px;
}

.section.manager-offers {
  background: rgba(0, 47, 65, 0.045);
}

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

.pricing-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-left: 6px solid var(--color-azure);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 28px rgba(0, 47, 65, 0.06);
}

.manager-pricing-card {
  border-left-color: var(--color-orange);
}

.pricing-card-highlight {
  box-shadow: var(--shadow-soft);
}

.pricing-card-head {
  margin-bottom: 18px;
}

.pricing-card h3 {
  margin-bottom: 6px;
  color: var(--color-navy);
  font-size: 1.45rem;
  line-height: 1.2;
}

.pricing-scope {
  color: var(--color-text);
  font-weight: 650;
}

.pricing-price {
  margin-bottom: 22px;
  color: var(--color-navy);
  font-size: 2.1rem;
  font-weight: 850;
  line-height: 1.1;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 650;
  color: var(--color-text);
}

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

.pricing-list li {
  position: relative;
  padding-left: 22px;
}

.pricing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  background: var(--color-orange);
  border-radius: 50%;
}

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

.pricing-features li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}

.pricing-check {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background: var(--color-orange);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1;
  transform: translateY(0.15em);
}

.delegation-note {
  margin-top: 28px;
  padding: 24px;
  background: rgba(0, 47, 65, 0.045);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.delegation-note h3 {
  margin-bottom: 12px;
  color: var(--color-navy);
}

.delegation-note p + p {
  margin-top: 12px;
}

.choice-card {
  border-top: 5px solid var(--color-azure);
}

.offers-final-cta {
  width: 100%;
  margin-top: 50px;
  margin-bottom: 84px;
  padding: 52px;
}

.legal-page {
  padding: 56px 0 84px;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 42px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 28px rgba(0, 47, 65, 0.06);
}

.legal-header {
  margin-bottom: 28px;
}

.legal-header h1 {
  margin-bottom: 8px;
  color: var(--color-navy);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.legal-subtitle {
  margin-bottom: 18px;
  color: var(--color-text);
}

.legal-container h2 {
  margin-top: 28px;
  margin-bottom: 10px;
  color: var(--color-navy);
  font-size: 1.18rem;
}

.legal-container p,
.legal-container li {
  line-height: 1.7;
}

.legal-container ul {
  margin: 10px 0 0;
  padding-left: 22px;
}

.legal-container a:not(.btn) {
  color: var(--color-navy);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-warning {
  padding: 14px 16px;
  background: rgba(0, 47, 65, 0.045);
  border-radius: var(--radius-md);
}

.panel-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}

.panel-row strong {
  color: var(--color-orange);
  font-size: 1.55rem;
  line-height: 1;
}

.panel-note {
  margin-top: 18px;
  color: var(--color-text);
}

.section {
  padding: 82px 0 0;
}

.home-section {
  margin-top: 72px;
  padding: 58px 48px;
  background: rgba(0, 47, 65, 0.045);
  border-radius: var(--radius-lg);
}

.section-heading {
  max-width: 100%;
  margin-bottom: 32px;
}

.section-heading h2,
.final-cta h2 {
  margin-bottom: 0;
  color: var(--color-navy);
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.15;
  letter-spacing: 0;
}

.home-section .section-heading h2 {
  color: var(--color-orange);
}

.section-subtitle {
  max-width: 1120px;
  margin-top: 12px;
  color: var(--color-text);
  font-size: clamp(1.24rem, 1.65vw, 1.55rem);
  line-height: 1.45;
}

.grid {
  display: grid;
  gap: 20px;
}

.four-columns {
  grid-template-columns: repeat(4, 1fr);
}

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

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

.card,
.audience-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 28px rgba(0, 47, 65, 0.06);
}

.card {
  padding: 24px;
}

.card h3,
.audience-card h3,
.feature-list h3 {
  margin-bottom: 8px;
  color: var(--color-navy);
  font-size: 1.08rem;
  line-height: 1.25;
}

.compact {
  border-left: 5px solid var(--color-azure);
}

.feature-differentiators {
  align-items: stretch;
}

.feature-card-primary {
  border-top: 6px solid var(--color-orange);
}

.feature-card-primary h3 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--color-orange);
  background: rgba(203, 122, 9, 0.10);
  border: 1px solid rgba(203, 122, 9, 0.18);
  border-radius: var(--radius-md);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-standard {
  margin-top: 22px;
  padding: 26px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 28px rgba(0, 47, 65, 0.06);
}

.feature-standard h3 {
  margin-bottom: 16px;
  color: var(--color-navy);
  font-size: 1.08rem;
  line-height: 1.3;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-tags li {
  padding: 9px 12px;
  color: var(--color-navy);
  font-weight: 650;
  background: rgba(17, 174, 199, 0.10);
  border: 1px solid rgba(17, 174, 199, 0.22);
  border-radius: var(--radius-md);
}

.solution-section {
  margin-top: 72px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 28px;
  align-items: start;
}

.split > :only-child {
  grid-column: 1 / -1;
}

.feature-list {
  display: grid;
  gap: 16px;
}

.split > .feature-list:only-child {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.solution-section .split {
  grid-template-columns: 1fr;
}

.feature-list article {
  padding: 22px;
  background: var(--color-white);
  border-left: 5px solid var(--color-orange);
  border-radius: var(--radius-md);
}

.solution-carousel {
  grid-column: 1 / -1;
  width: min(100%, 1040px);
  min-width: 0;
  margin: 12px auto 0;
  padding: 18px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 28px rgba(0, 47, 65, 0.06);
}

.solution-carousel-control {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.solution-carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.solution-carousel-track {
  display: flex;
  transition: transform 220ms ease;
}

#solution-preview-calendar:checked ~ .solution-carousel-viewport .solution-carousel-track {
  transform: translateX(0);
}

#solution-preview-dashboard:checked ~ .solution-carousel-viewport .solution-carousel-track {
  transform: translateX(-100%);
}

#solution-preview-contracts:checked ~ .solution-carousel-viewport .solution-carousel-track {
  transform: translateX(-200%);
}

.solution-slide {
  position: relative;
  flex: 0 0 100%;
  margin: 0;
}

.solution-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: contain;
  background: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.solution-slide figcaption {
  margin-top: 12px;
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 650;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background: rgba(0, 47, 65, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  cursor: pointer;
  font-size: 2.1rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 160ms ease, transform 160ms ease;
}

.carousel-arrow:hover {
  background: rgba(203, 122, 9, 0.92);
  transform: translateY(-50%) scale(1.04);
}

.carousel-arrow-prev {
  left: 18px;
}

.carousel-arrow-next {
  right: 18px;
}

.solution-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.solution-carousel-dots label {
  width: 9px;
  height: 9px;
  background: rgba(0, 47, 65, 0.24);
  border-radius: 999px;
}

#solution-preview-calendar:checked ~ .solution-carousel-dots label:nth-child(1),
#solution-preview-dashboard:checked ~ .solution-carousel-dots label:nth-child(2),
#solution-preview-contracts:checked ~ .solution-carousel-dots label:nth-child(3) {
  background: var(--color-orange);
}

.audience-card {
  padding: 30px;
  border-top: 6px solid var(--color-azure);
}

.audience-card:nth-child(2) {
  border-top-color: var(--color-orange);
}

.benefits-section {
  padding-bottom: 58px;
}

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

.benefits-list div {
  padding: 26px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 28px rgba(0, 47, 65, 0.06);
}

.benefits-list strong,
.benefits-list span {
  display: block;
}

.benefits-list strong {
  margin-bottom: 8px;
  color: var(--color-navy);
  font-size: 1.08rem;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 72px;
  margin-bottom: 84px;
  padding: 42px;
  color: var(--color-white);
  background: var(--color-navy);
  border-radius: var(--radius-lg);
}

.final-cta div {
  max-width: 760px;
}

.final-cta h2 {
  color: var(--color-white);
}

.final-cta p:last-child {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  color: var(--color-white);
  background: var(--color-navy);
}

.footer-inner {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding: 34px 0;
  text-align: center;
}

.footer-brand {
  margin-bottom: 16px;
  font-size: 1.1rem;
  font-weight: 800;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 22px;
}

.footer-link {
  padding: 0;
  color: inherit;
  font: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.footer-link:hover {
  color: var(--color-orange);
}

.copyright {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.70);
  font-size: 0.92rem;
}

.cookie-consent {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 30;
  color: var(--color-navy);
}

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

.cookie-consent__content {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.cookie-consent__content p {
  max-width: 620px;
}

.cookie-consent__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.cookie-consent__actions .btn {
  white-space: nowrap;
}

@media (max-width: 980px) {
  .nav {
    min-height: auto;
    padding: 16px 0;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .nav-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero,
  .split,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .solution-section .split {
    grid-template-columns: 1fr;
  }

  .split > .feature-list:only-child {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 54px 34px;
  }

  .section-heading {
    max-width: 100%;
  }

  .home-section {
    margin-top: 56px;
    padding: 46px 30px;
  }

  .section-subtitle {
    max-width: 100%;
    font-size: clamp(1.14rem, 2.2vw, 1.3rem);
    line-height: 1.45;
  }

  .four-columns,
  .three-columns,
  .solution-benefit-grid,
  .product-visual-grid,
  .tools-available-grid,
  .upcoming-tools-grid,
  .benefits-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-differentiators > .feature-card-primary:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: calc(50% - 10px);
    justify-self: center;
  }

  .offer-choice .choice-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: calc(50% - 10px);
    justify-self: center;
  }

  .product-visual-grid .product-visual-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: calc(50% - 10px);
    justify-self: center;
  }

  .solution-section {
    padding: 46px 30px;
  }

  .section.solution-audience,
  .section.solution-key-features,
  .section.solution-product-visuals,
  .section.offers-group,
  .section.offer-choice {
    margin-top: 56px;
    padding: 48px 28px;
  }

  .page-hero {
    padding: 44px 30px;
  }

  .page-hero-image {
    max-width: 260px;
    justify-self: center;
  }

  .tools-page-hero .solution-hero-points {
    justify-content: center;
  }

  .solution-section-title {
    align-items: flex-start;
  }

  .upcoming-tools {
    width: 100%;
  }

  .upcoming-tools-panel {
    gap: 38px;
    padding: 76px 44px 84px;
  }

  .tools-impact {
    margin-bottom: 88px;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .offers-final-cta {
    align-items: center;
    text-align: center;
  }

  .tools-final-cta {
    align-items: center;
    text-align: center;
  }

  .pricing-grid {
    gap: 20px;
  }
}

@media (max-width: 680px) {
  main,
  .nav,
  .footer-inner {
    width: min(100% - 24px, var(--max-width));
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

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

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

  .nav-links {
    gap: 14px;
    flex-wrap: wrap;
  }

  .nav-actions,
  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .nav-actions {
    flex-direction: row;
    justify-content: center;
    gap: 8px;
  }

  .nav-actions .btn {
    width: auto;
    flex: 1 1 0;
    min-width: 0;
    padding: 10px 12px;
  }

  .nav-login {
    flex: 0 0 auto;
    padding: 10px 8px;
    font-size: 0.95rem;
  }

  .nav-demo-full {
    display: none;
  }

  .nav-demo-short {
    display: inline;
  }

  .deployment-banner {
    margin-top: 16px;
  }

  .hero {
    padding: 38px 22px;
  }

  .page-hero {
    padding: 34px 22px;
  }

  .tools-page-hero .page-hero-content,
  .tools-page-hero .solution-hero-text {
    text-align: center;
  }

  .tools-page-hero .solution-hero-points {
    justify-content: center;
  }

  .offers-page-hero .page-hero-content,
  .offers-page-hero .offers-hero-text {
    text-align: center;
  }

  .offers-page-hero .offers-hero-points {
    justify-content: center;
  }

  .solution-section-title {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .solution-section-icon {
    align-self: center;
  }

  .hero-text {
    font-size: 1.05rem;
  }

  .section {
    padding-top: 62px;
  }

  .home-section {
    margin-top: 42px;
    padding: 32px 20px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-subtitle {
    margin-top: 10px;
    font-size: 1.02rem;
    line-height: 1.5;
  }

  .solution-section {
    margin-top: 42px;
    padding: 32px 20px;
  }

  .solution-carousel {
    padding: 12px;
  }

  .solution-slide figcaption {
    font-size: 0.9rem;
  }

  .section.solution-audience,
  .section.solution-key-features,
  .section.solution-product-visuals,
  .section.offers-group,
  .section.offer-choice {
    margin-top: 62px;
    padding: 34px 20px;
  }

  .upcoming-tools {
    margin-top: 62px;
    width: 100%;
  }

  .upcoming-tools-panel {
    gap: 28px;
    padding: 42px 22px;
  }

  .four-columns,
  .three-columns,
  .two-columns,
  .solution-benefit-grid,
  .product-visual-grid,
  .tools-available-grid,
  .upcoming-tools-grid,
  .pricing-grid,
  .benefits-list {
    grid-template-columns: 1fr;
  }

  .feature-differentiators > .feature-card-primary:last-child:nth-child(odd) {
    grid-column: auto;
    width: 100%;
  }

  .offer-choice .choice-card:last-child:nth-child(odd) {
    grid-column: auto;
    width: 100%;
  }

  .product-visual-grid .product-visual-card:last-child:nth-child(odd) {
    grid-column: auto;
    width: 100%;
  }

  .final-cta {
    margin-top: 46px;
    margin-bottom: 62px;
    padding: 30px 22px;
  }

  .tools-impact {
    margin-bottom: 62px;
    padding-bottom: 0;
  }

  .tools-final-cta {
    margin-bottom: 62px;
    padding: 30px 22px;
  }

  .offers-final-cta {
    margin-top: 30px;
    margin-bottom: 62px;
    padding: 30px 22px;
  }

  .site-footer nav {
    flex-direction: column;
    gap: 10px;
  }

  .cookie-consent {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .cookie-consent__content,
  .cookie-consent__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
