:root {
  --color-primary: #304269;
  --color-primary-deep: #233452;
  --color-secondary: #ea620d;
  --color-secondary-strong: #bd4901;
  --color-secondary-dark: #9f3b00;
  --color-background: #ffffff;
  --color-background-alt: #f2f7fb;
  --color-brand-sky: #90bdd3;
  --color-brand-mist: #d8e7f4;
  --color-brand-black: #000000;
  --color-text: #172033;
  --color-text-muted: #5d6677;
  --color-border: #d6e1ea;
  --color-success-soft: #eaf2ee;
  --border-radius: 20px;
  --border-radius-small: 12px;
  --shadow: 0 18px 48px rgba(34, 49, 78, 0.1);
  --shadow-small: 0 10px 28px rgba(34, 49, 78, 0.08);
  --max-content-width: 1180px;
  --header-height: 78px;
  --font-sans: "Sofia Pro", "Avenir Next", Avenir, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--color-text);
  background: var(--color-background);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

h1,
h2,
h3 {
  color: var(--color-text);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 1.4rem;
  font-size: clamp(2.4rem, 10vw, 4.75rem);
  font-weight: 760;
}

h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2rem, 7vw, 3.35rem);
  font-weight: 750;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
  font-weight: 730;
}

:focus-visible {
  outline: 3px solid rgba(234, 98, 13, 0.46);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.container {
  width: min(100% - 2rem, var(--max-content-width));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.7rem 1rem;
  color: #fff;
  background: var(--color-primary-deep);
  border-radius: 8px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section {
  padding-block: clamp(4.75rem, 10vw, 8.5rem);
}

.section-heading {
  max-width: 710px;
  margin-bottom: clamp(2.25rem, 5vw, 4rem);
}

.section-heading > p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--color-text-muted);
  font-size: clamp(1rem, 2vw, 1.13rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.1rem;
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  background: var(--color-secondary);
  border-radius: 50%;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.82);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.35rem;
  border: 1px solid var(--color-secondary-strong);
  color: #fff;
  background: var(--color-secondary-strong);
  border-radius: 999px;
  box-shadow: 0 9px 22px rgba(234, 98, 13, 0.2);
  font-size: 0.96rem;
  font-weight: 750;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: var(--color-secondary-dark);
  border-color: var(--color-secondary-dark);
  box-shadow: 0 12px 27px rgba(201, 79, 3, 0.25);
  transform: translateY(-2px);
}

.button-small {
  min-height: 43px;
  padding: 0.65rem 1.08rem;
  font-size: 0.88rem;
}

.button-secondary {
  color: var(--color-primary);
  background: transparent;
  border-color: rgba(48, 66, 105, 0.25);
  box-shadow: none;
}

.button-secondary:hover {
  color: #fff;
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-small);
}

.button-light {
  color: var(--color-primary-deep);
  background: #fff;
  border-color: #fff;
  box-shadow: none;
}

.button-light:hover {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: none;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--color-border);
  box-shadow: 0 8px 24px rgba(34, 49, 78, 0.06);
}

.header-inner {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.7rem;
  color: var(--color-text);
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(48, 66, 105, 0.16);
}

.brand-copy {
  display: grid;
  line-height: 1.08;
}

.brand-copy strong {
  font-size: 1.02rem;
  letter-spacing: -0.015em;
}

.brand-copy span {
  margin-top: 0.22rem;
  color: var(--color-text-muted);
  font-size: 0.73rem;
  font-weight: 650;
}

.menu-toggle {
  display: grid;
  width: 46px;
  height: 46px;
  place-content: center;
  gap: 5px;
  padding: 0;
  color: var(--color-primary);
  background: var(--color-background-alt);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-panel {
  position: absolute;
  top: calc(100% + 0.65rem);
  right: 0;
  left: 0;
  display: none;
  max-height: calc(100vh - var(--header-height) - 2rem);
  padding: 1rem;
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.nav-panel[data-open="true"] {
  display: grid;
  gap: 0.75rem;
}

.main-nav {
  display: grid;
}

.main-nav a,
.privacy-link {
  padding: 0.75rem 0.45rem;
  color: var(--color-text-muted);
  font-size: 0.93rem;
  font-weight: 680;
  text-decoration: none;
  transition: color 160ms ease;
}

.main-nav a:hover,
.privacy-link:hover,
.privacy-link[aria-current="page"] {
  color: var(--color-secondary-strong);
}

.privacy-link {
  border-top: 1px solid var(--color-border);
  font-size: 0.78rem;
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  padding-block: clamp(3.75rem, 9vw, 7.5rem) clamp(4.5rem, 9vw, 7rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 11%, rgba(234, 98, 13, 0.1), transparent 24rem),
    radial-gradient(circle at 78% 78%, rgba(144, 189, 211, 0.2), transparent 26rem),
    linear-gradient(180deg, #fff 0%, #f8fbfd 100%);
}

.hero::before {
  position: absolute;
  right: -14rem;
  bottom: -21rem;
  z-index: -1;
  width: 39rem;
  height: 39rem;
  background: rgba(216, 231, 244, 0.5);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: clamp(3rem, 8vw, 6rem);
}

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

.hero h1 {
  max-width: 760px;
}

.hero-text {
  max-width: 640px;
  margin-bottom: 2rem;
  color: var(--color-text-muted);
  font-size: clamp(1.08rem, 2.8vw, 1.3rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 1.35rem 0 0;
  color: var(--color-text-muted);
  font-size: 0.88rem;
}

.hero-note svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  padding: 4px;
  color: var(--color-primary);
  background: var(--color-success-soft);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.hero-visual {
  position: relative;
  min-height: 410px;
  display: grid;
  place-items: center;
}

.visual-orbit {
  position: absolute;
  inset: 50% auto auto 50%;
  border: 1px solid rgba(144, 189, 211, 0.42);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 330px;
  height: 330px;
}

.orbit-two {
  width: 410px;
  height: 410px;
  border-style: dashed;
}

.visual-card {
  position: relative;
  z-index: 2;
  width: min(100%, 320px);
  padding: 1.4rem;
  background: #fff;
  border: 1px solid rgba(48, 66, 105, 0.12);
  border-radius: 26px;
  box-shadow: 0 30px 80px rgba(34, 49, 78, 0.16);
}

.visual-card::after {
  position: absolute;
  top: -8px;
  right: 28px;
  width: 16px;
  height: 16px;
  background: var(--color-secondary);
  border: 4px solid #fff;
  border-radius: 50%;
  content: "";
}

.visual-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.visual-card-top img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(48, 66, 105, 0.16);
}

.visual-card-top span {
  padding: 0.38rem 0.65rem;
  color: var(--color-primary);
  background: var(--color-background-alt);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 750;
}

.visual-kicker {
  margin-bottom: 0.45rem;
  color: var(--color-secondary);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.visual-title {
  margin-bottom: 1.75rem;
  color: var(--color-primary-deep);
  font-size: clamp(1.7rem, 7vw, 2.3rem);
  font-weight: 780;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.visual-status {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.9rem;
  background: var(--color-background-alt);
  border-radius: var(--border-radius-small);
}

.visual-status > span {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  margin-top: 0.35rem;
  background: var(--color-secondary);
  border: 3px solid rgba(234, 98, 13, 0.18);
  border-radius: 50%;
  box-sizing: content-box;
}

.visual-status p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.visual-status strong {
  display: block;
  color: var(--color-text);
}

.visual-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.9rem;
  color: var(--color-primary-deep);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  box-shadow: var(--shadow-small);
  font-size: 0.72rem;
  font-weight: 750;
  white-space: nowrap;
}

.visual-chip svg {
  width: 19px;
  height: 19px;
  color: var(--color-secondary);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.chip-one {
  top: 8%;
  left: 0;
}

.chip-two {
  right: -2%;
  bottom: 8%;
}

/* Relationship */
.relationship {
  position: relative;
  z-index: 3;
  border-block: 1px solid var(--color-border);
  background: #fff;
}

.relationship-grid {
  display: grid;
}

.relationship-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 1rem;
  padding-block: 1.45rem;
  border-bottom: 1px solid var(--color-border);
}

.relationship-item:last-child {
  border-bottom: 0;
}

.relationship-number {
  color: var(--color-secondary-strong);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.relationship-item p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.relationship-item strong {
  color: var(--color-text);
}

/* Solutions */
.solutions {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(180deg, #f5f9fc 0%, var(--color-brand-mist) 100%);
}

.solutions::before {
  position: absolute;
  inset: -6rem;
  z-index: -1;
  background-image: url("../assets/solucionai-symbols-navy.png");
  background-repeat: repeat;
  background-size: 360px auto;
  opacity: 0.025;
  transform: rotate(-4deg) scale(1.08);
  content: "";
}

.solutions-grid {
  display: grid;
  gap: 1rem;
}

.solution-card {
  position: relative;
  min-height: 270px;
  padding: 1.55rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.solution-card::after {
  position: absolute;
  right: -35px;
  bottom: -35px;
  width: 95px;
  height: 95px;
  background: rgba(234, 98, 13, 0.05);
  border-radius: 50%;
  content: "";
}

.solution-card:hover {
  border-color: rgba(48, 66, 105, 0.26);
  box-shadow: var(--shadow-small);
  transform: translateY(-3px);
}

.icon-box {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 1.5rem;
  color: var(--color-secondary);
  background: rgba(234, 98, 13, 0.09);
  border-radius: 14px;
}

.icon-box svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.solution-card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.section-disclaimer {
  max-width: 800px;
  margin: 1.5rem 0 0;
  padding-left: 1rem;
  color: var(--color-text-muted);
  border-left: 3px solid var(--color-secondary);
  font-size: 0.82rem;
}

/* Process */
.process {
  color: #fff;
  background: var(--color-primary);
}

.process-layout {
  display: grid;
  gap: 2.5rem;
}

.process-heading {
  margin-bottom: 0;
}

.process-heading h2,
.process-step h3 {
  color: #fff;
}

.process-heading > p:last-child {
  color: rgba(255, 255, 255, 0.7);
}

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

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.process-step:first-child {
  padding-top: 0;
}

.process-step:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.step-number {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: var(--color-secondary-strong);
  border-radius: 50%;
  font-size: 0.74rem;
  font-weight: 850;
}

.process-step h3 {
  margin-bottom: 0.55rem;
}

.process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* About */
.about {
  background: #fff;
}

.about-grid {
  display: grid;
  align-items: center;
  gap: clamp(2.5rem, 7vw, 6rem);
}

.about-lead {
  margin-bottom: 1.35rem;
  color: var(--color-text);
  font-size: clamp(1.08rem, 2.5vw, 1.27rem);
  line-height: 1.65;
}

.about-copy > p:last-child {
  margin-bottom: 0;
  color: var(--color-text-muted);
}

.role-card {
  position: relative;
  padding: clamp(1.5rem, 5vw, 2.5rem);
  overflow: hidden;
  background: linear-gradient(145deg, #f8fbfd 0%, var(--color-brand-mist) 100%);
  border: 1px solid var(--color-border);
  border-radius: 28px;
}

.role-card::before {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 150px;
  height: 150px;
  background: rgba(234, 98, 13, 0.08);
  border-radius: 50%;
  content: "";
}

.role-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.45rem 0.7rem;
  color: var(--color-primary);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 750;
}

.role-badge svg {
  width: 18px;
  height: 18px;
  padding: 3px;
  color: #fff;
  background: var(--color-secondary);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.role-card h3 {
  position: relative;
  margin-bottom: 1.5rem;
  font-size: clamp(1.55rem, 5vw, 2.1rem);
}

.role-card dl {
  position: relative;
  margin-bottom: 0;
}

.role-card dl > div {
  display: grid;
  gap: 0.2rem;
  padding-block: 0.9rem;
  border-top: 1px solid var(--color-border);
}

.role-card dt {
  color: var(--color-text-muted);
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.role-card dd {
  margin: 0;
  color: var(--color-primary-deep);
  font-weight: 700;
}

/* Contact */
.contact-section {
  padding-bottom: clamp(4.5rem, 9vw, 7rem);
}

.contact-card {
  position: relative;
  display: grid;
  gap: 2.5rem;
  padding: clamp(1.65rem, 6vw, 4.25rem);
  overflow: hidden;
  color: #fff;
  background: var(--color-primary);
  border-radius: 30px;
}

.contact-card::after {
  position: absolute;
  top: -170px;
  right: -150px;
  width: 360px;
  height: 360px;
  border: 60px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
  content: "";
}

.contact-copy,
.contact-details {
  position: relative;
  z-index: 1;
}

.contact-copy h2 {
  max-width: 610px;
  color: #fff;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 1.7rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}

.contact-details {
  display: grid;
  align-content: center;
  gap: 1rem;
  min-width: 0;
}

.contact-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.9rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--border-radius-small);
}

.contact-item svg {
  width: 24px;
  height: 24px;
  color: var(--color-secondary);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-item span {
  display: block;
  margin-bottom: 0.15rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-item a,
.contact-item strong {
  display: block;
  overflow-wrap: anywhere;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 680;
}

.contact-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  line-height: 1.5;
}

/* Footer */
.site-footer {
  padding-top: clamp(3.75rem, 8vw, 6rem);
  color: rgba(255, 255, 255, 0.72);
  background: var(--color-brand-black);
  border-top: 6px solid var(--color-secondary);
}

.footer-grid {
  display: grid;
  gap: 2.75rem;
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

.footer-brand-lockup {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1.35rem;
  color: #fff;
  text-decoration: none;
}

.footer-brand-lockup img {
  width: 180px;
  height: auto;
}

.footer-brand-lockup span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 680;
  letter-spacing: 0.04em;
}

.footer-intro > p {
  max-width: 360px;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

.footer-intro .footer-clarification {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.74rem;
  line-height: 1.55;
}

.site-footer h2 {
  margin-bottom: 1.15rem;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-company dl {
  margin: 0;
}

.footer-company dl > div {
  margin-bottom: 0.75rem;
}

.footer-company dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-company dd {
  margin: 0.15rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 620;
}

.footer-contact {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.footer-contact address {
  margin-bottom: 1rem;
  font-size: 0.86rem;
  font-style: normal;
  line-height: 1.65;
}

.footer-contact a,
.footer-contact > span {
  max-width: 100%;
  margin-bottom: 0.35rem;
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.83rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding-block: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: #fff;
}

/* Cookie notice */
.cookie-banner {
  position: fixed;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  z-index: 300;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 0.8rem 0.9rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  box-shadow: 0 22px 70px rgba(23, 32, 51, 0.22);
}

.cookie-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--color-secondary);
  background: rgba(234, 98, 13, 0.09);
  border-radius: 11px;
}

.cookie-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.cookie-copy h2 {
  margin-bottom: 0.3rem;
  font-size: 0.98rem;
  letter-spacing: -0.015em;
}

.cookie-copy p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.cookie-copy a {
  color: var(--color-primary);
  font-weight: 700;
}

.cookie-banner > .button {
  grid-column: 1 / -1;
  width: 100%;
}

/* Privacy page */
.privacy-hero {
  position: relative;
  isolation: isolate;
  padding-block: clamp(4.5rem, 9vw, 7rem);
  overflow: hidden;
  color: #fff;
  background: var(--color-primary);
}

.privacy-hero::after {
  position: absolute;
  right: 2%;
  bottom: -2rem;
  z-index: -1;
  width: min(42vw, 34rem);
  height: 10rem;
  background: url("../assets/solucionai-wordmark-light.png") right bottom / contain no-repeat;
  opacity: 0.045;
  content: "";
}

.privacy-hero-inner {
  display: grid;
  gap: 2rem;
}

.privacy-hero h1 {
  margin-bottom: 1.2rem;
  color: #fff;
  font-size: clamp(2.5rem, 9vw, 4.6rem);
}

.privacy-hero h1 + p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
}

.privacy-updated {
  align-self: end;
  margin: 0;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 650;
}

.privacy-updated span {
  display: block;
  margin-bottom: 0.2rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.privacy-content {
  padding-block: clamp(3.75rem, 8vw, 7rem);
  background: linear-gradient(180deg, #f5f9fc 0%, rgba(216, 231, 244, 0.62) 100%);
}

.privacy-layout {
  display: grid;
  align-items: start;
  gap: 2.25rem;
}

.privacy-index {
  display: none;
}

.privacy-article {
  min-width: 0;
  padding: clamp(1.35rem, 5vw, 3.75rem);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 26px;
  box-shadow: var(--shadow-small);
}

.privacy-article > section {
  position: relative;
  padding-block: clamp(2rem, 5vw, 3.1rem);
  scroll-margin-top: calc(var(--header-height) + 24px);
  border-bottom: 1px solid var(--color-border);
}

.privacy-article > section:first-child {
  padding-top: 0;
}

.privacy-article > section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.privacy-section-number {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--color-secondary-strong);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.privacy-article h2 {
  font-size: clamp(1.5rem, 5vw, 2rem);
}

.privacy-article p,
.privacy-article li {
  color: var(--color-text-muted);
}

.privacy-article p:last-child {
  margin-bottom: 0;
}

.privacy-article ul {
  margin: 1.25rem 0 0;
  padding-left: 1.25rem;
}

.privacy-article li {
  margin-bottom: 0.5rem;
  padding-left: 0.25rem;
}

.privacy-article li::marker {
  color: var(--color-secondary);
}

.privacy-article code {
  padding: 0.12rem 0.35rem;
  color: var(--color-primary-deep);
  background: var(--color-background-alt);
  border: 1px solid var(--color-border);
  border-radius: 5px;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.86em;
}

.privacy-contact-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 1.25rem;
  padding: 1.25rem;
  background: var(--color-background-alt);
  border-left: 3px solid var(--color-secondary);
  border-radius: 0 var(--border-radius-small) var(--border-radius-small) 0;
}

.privacy-contact-card p {
  color: var(--color-text);
}

.privacy-contact-card a,
.privacy-contact-card span {
  max-width: 100%;
  margin-top: 0.35rem;
  overflow-wrap: anywhere;
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 680;
}

@media (min-width: 560px) {
  .container {
    width: min(100% - 3rem, var(--max-content-width));
  }

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

  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-banner {
    right: 1.25rem;
    bottom: 1.25rem;
    left: auto;
    width: min(480px, calc(100% - 2.5rem));
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    padding: 1rem 1.1rem;
  }

  .cookie-banner > .button {
    grid-column: auto;
    width: auto;
  }
}

@media (min-width: 720px) {
  :root {
    --header-height: 84px;
  }

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

  .relationship-item {
    padding: 1.6rem 1.5rem;
    border-right: 1px solid var(--color-border);
    border-bottom: 0;
  }

  .relationship-item:first-child {
    padding-left: 0;
  }

  .relationship-item:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .process-step {
    gap: 1.4rem;
    padding-block: 1.7rem;
  }

  .contact-card {
    grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1.15fr 1fr 0.95fr;
  }

  .privacy-hero-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  }

  .about-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  }

  .process-layout {
    grid-template-columns: minmax(0, 0.8fr) minmax(440px, 1.2fr);
    align-items: start;
  }

  .process-heading {
    position: sticky;
    top: calc(var(--header-height) + 2.5rem);
  }
}

@media (min-width: 960px) {
  .menu-toggle {
    display: none;
  }

  .nav-panel,
  .nav-panel[data-open="true"] {
    position: static;
    display: flex;
    max-height: none;
    align-items: center;
    gap: clamp(0.55rem, 1.3vw, 1rem);
    padding: 0;
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .main-nav {
    display: flex;
    align-items: center;
    gap: clamp(0.15rem, 0.6vw, 0.45rem);
  }

  .main-nav a {
    padding: 0.55rem clamp(0.35rem, 0.7vw, 0.62rem);
    font-size: 0.82rem;
  }

  .privacy-link {
    max-width: 68px;
    padding: 0;
    border: 0;
    font-size: 0.66rem;
    line-height: 1.2;
    text-align: center;
  }

  .nav-panel .button {
    flex: 0 0 auto;
  }

  .privacy-layout {
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 3rem;
  }

  .privacy-index {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
    display: grid;
    gap: 0.2rem;
    padding: 1.1rem;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-small);
  }

  .privacy-index p {
    margin: 0 0 0.65rem;
    padding: 0 0.55rem;
    color: var(--color-text);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .privacy-index a {
    padding: 0.38rem 0.55rem;
    color: var(--color-text-muted);
    border-radius: 7px;
    font-size: 0.78rem;
    font-weight: 620;
    text-decoration: none;
  }

  .privacy-index a:hover {
    color: var(--color-primary);
    background: var(--color-background-alt);
  }
}

@media (min-width: 1120px) {
  .solutions-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .solution-card {
    min-height: 320px;
  }
}

@media (max-width: 400px) {
  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 380px;
  }

  .orbit-two {
    width: 360px;
    height: 360px;
  }

  .chip-one {
    top: 5%;
    left: -0.25rem;
  }

  .chip-two {
    right: -0.25rem;
    bottom: 5%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
