:root {
  --gold: #e0b458;
  --gold-soft: #f4e4b8;
  --ink: #171512;
  --text: #3f3a35;
  --muted: #6f6961;
  --paper: #ffffff;
  --surface: #fff9ef;
  --surface-alt: #f7f3ea;
  --line: rgba(23, 21, 18, 0.09);
  --shadow-soft: 0 25px 60px rgba(35, 27, 16, 0.08);
  --shadow-card: 0 30px 80px rgba(35, 27, 16, 0.11);
  --container: min(1240px, calc(100% - 2rem));
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --font-serif: Cardinal, Georgia, "Times New Roman", serif;
  --font-sans: Nunito, Arial, sans-serif;
  --ease: 320ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: #ffffff;
  min-height: 100vh;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.site-shell::before,
 .site-shell::after {
  left: -4rem;
  bottom: 10rem;
  width: 14rem;
  height: 14rem;
  background: rgba(244, 228, 184, 0.18);
}

.container {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin-inline: auto;
}

.section,
.hero,
.legal-hero {
  position: relative;
  z-index: 1;
}

.section {
  padding: 5.5rem 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(247, 243, 234, 0.88), rgba(255, 255, 255, 0.92));
}

.section-contrast {
  background:
    radial-gradient(circle at 18% 22%, rgba(224, 180, 88, 0.18), transparent 24%),
    linear-gradient(180deg, #fffaf0, #ffffff);
}

.section-heading {
  display: grid;
  gap: 1rem;
  max-width: 48rem;
  margin-bottom: 2.8rem;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(224, 180, 88, 0.12);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-title,
.hero-title,
.brand-name,
.process-step,
.mini-stat-value,
.counter-number,
.advantage-index,
.legal-section h2 {
  font-family: var(--font-serif);
}

.section-title,
.hero-title {
  margin: 0;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 0.97;
}

.section-title {
  font-size: clamp(1rem, 2.8vw, 2.8rem);
}

.section-copy,
.hero-text,
.footer-inner p,
.footer-stack span,
.form-note,
.service-card p,
.about-copy p,
.advantage-card p,
.process-card p,
.proof-stat p,
.testimonial-meta span,
.testimonial-quote,
.legal-section p,
.legal-section li {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(23, 21, 18, 0.06);
}

.navbar {
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-mark {
  width: 2.9rem;
  height: 2.9rem;
  flex-shrink: 0;
}

.brand-copy {
  display: grid;
  min-width: 0;
}

.brand-name {
  font-size: 1.32rem;
  color: var(--ink);
  letter-spacing: 0.08em;
}

.brand-tagline {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links,
.footer-links,
.footer-stack,
.contact-actions,
.hero-actions,
.hero-features,
.scene-tags {
  display: flex;
  flex-wrap: wrap;
}

.nav-links {
  gap: 1.45rem;
  align-items: center;
}

.nav-links a,
.footer-links a {
  position: relative;
  font-weight: 700;
  color: var(--text);
  transition: color var(--ease);
}

.nav-links a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.32rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ink);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    background var(--ease),
    color var(--ease),
    border-color var(--ease);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold) 0%, #f2d58d 100%);
  box-shadow: 0 16px 36px rgba(224, 180, 88, 0.28);
}

.btn-secondary,
.btn-ghost {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(23, 21, 18, 0.12);
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
}

.mobile-toggle,
.mobile-panel {
  display: none;
}

.mobile-toggle {
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  flex-direction: column;
  border-radius: 14px;
  border: 1px solid rgba(23, 21, 18, 0.08);
  background: #fff;
}

.mobile-toggle span {
  width: 1.2rem;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform var(--ease), opacity var(--ease);
}

.mobile-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  padding: 3rem 0 5rem;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2.5rem;
  height: 5rem;
  background: radial-gradient(100% 100% at 50% 0%, rgba(224, 180, 88, 0.18), transparent 65%);
  opacity: 0.45;
  pointer-events: none;
}

.hero-layout {
  display: grid;
  align-items: center;
  gap: 2rem;
}

.hero-copy {
  display: grid;
  gap: 1.2rem;
}

.hero-title {
  font-size: clamp(1rem, 2.8vw, 2.8rem);
  max-width: 20ch;
}

.hero-text {
  max-width: 40rem;
  font-size: 0.88rem;
}

.hero-actions {
  gap: 0.9rem;
  margin-top: 0.15rem;
}

.hero-features {
  gap: 0.7rem;
}

.hero-chip,
.scene-tag,
.logo-token {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(23, 21, 18, 0.08);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-weight: 700;
  font-size: 0.86rem;
  box-shadow: 0 10px 30px rgba(35, 27, 16, 0.05);
}

.mini-stats {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-stat,
.service-card,
.about-visual-card,
.advantage-card,
.process-card,
.proof-stat,
.testimonial-shell,
.contact-card,
.legal-section {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(23, 21, 18, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.mini-stat {
  padding: 1.2rem 1rem;
}

.mini-stat::before,
.service-card::before,
.about-visual-card::before,
.advantage-card::before,
.process-card::before,
.proof-stat::before,
.contact-card::before,
.legal-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(224, 180, 88, 0.18), transparent 38%);
  opacity: 0;
  transition: opacity var(--ease);
  pointer-events: none;
}

.mini-stat:hover::before,
.service-card:hover::before,
.about-visual-card:hover::before,
.advantage-card:hover::before,
.process-card:hover::before,
.proof-stat:hover::before,
.contact-card:hover::before,
.legal-section:hover::before {
  opacity: 1;
}

.mini-stat-value,
.counter-number,
.advantage-index {
  display: block;
  color: var(--ink);
  font-size: clamp(1rem, 1.4vw, 2.4rem);
  line-height: 1;
}

.mini-stat-label {
  display: block;
  margin-top: 0.4rem;
  color: var(--muted);
  line-height: 1.45;
}

.hero-visual-column {
  perspective: 1400px;
}

.tilt-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glow-x: 50%;
  --glow-y: 50%;
  transform-style: preserve-3d;
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 180ms ease;
}

.hero-scene {
  position: relative;
  min-height: 36rem;
  padding: 2rem;
  border-radius: 38px;
  border: 1px solid rgba(23, 21, 18, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 239, 0.94)),
    linear-gradient(135deg, rgba(224, 180, 88, 0.08), transparent 50%);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.hero-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(224, 180, 88, 0.16), transparent 26%);
  pointer-events: none;
}

.scene-glow,
.hero-bg-shape,
.scene-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-bg-shape {
  filter: blur(10px);
  opacity: 0.4;
}

.hero-bg-shape-1 {
  width: 18rem;
  height: 18rem;
  right: 8%;
  top: 4rem;
  background: radial-gradient(circle, rgba(224, 180, 88, 0.18), transparent 65%);
  animation: drift 7s ease-in-out infinite;
}

.hero-bg-shape-2 {
  width: 12rem;
  height: 12rem;
  left: 4%;
  top: 16rem;
  background: radial-gradient(circle, rgba(244, 228, 184, 0.45), transparent 68%);
  animation: drift 9s ease-in-out infinite reverse;
}

.scene-glow {
  right: -3rem;
  bottom: -3rem;
  width: 15rem;
  height: 15rem;
  background: radial-gradient(circle, rgba(224, 180, 88, 0.22), transparent 66%);
  filter: blur(15px);
}

.scene-ring {
  border: 1px solid rgba(224, 180, 88, 0.2);
}

.scene-ring-1 {
  width: 22rem;
  height: 22rem;
  right: -6rem;
  top: -2rem;
}

.scene-ring-2 {
  width: 14rem;
  height: 14rem;
  left: -5rem;
  bottom: -3rem;
}

.scene-main-card,
.floating-panel {
  position: absolute;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(23, 21, 18, 0.08);
  box-shadow: 0 30px 70px rgba(35, 27, 16, 0.12);
  transform-style: preserve-3d;
}

.scene-main-card {
  inset: 3.4rem 5.2rem 4.6rem 4rem;
  padding: 1.45rem;
  display: grid;
  grid-template-rows: auto auto auto auto 1fr;
  gap: 1rem;
  transform: translateZ(42px);
}

.scene-main-top {
  display: inline-flex;
  gap: 0.38rem;
}

.scene-dot {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: rgba(23, 21, 18, 0.18);
}

.scene-brand-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.scene-brand-row img {
  width: 4.3rem;
  height: 4.3rem;
  border-radius: 1.2rem;
  box-shadow: 0 14px 26px rgba(224, 180, 88, 0.16);
}

.scene-brand-row h3,
.service-card h3,
.advantage-card h3,
.process-card h3,
.legal-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.2rem;
}

.panel-eyebrow,
.service-accent {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.scene-main-text {
  margin: 0;
  color: var(--muted);
}

.scene-tags {
  gap: 0.55rem;
}

.scene-chart-box {
  display: grid;
  gap: 1rem;
  margin-top: auto;
}

.scene-line-chart {
  height: 9rem;
  padding: 0.8rem;
  border-radius: 22px;
  background: linear-gradient(180deg, #fffdf9, #fff6e6);
  border: 1px solid rgba(23, 21, 18, 0.06);
}

.scene-line-chart svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.scene-line-chart path {
  fill: none;
  stroke: url(#sceneLine);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scene-line-chart circle {
  fill: var(--gold);
  stroke: #fff;
  stroke-width: 2.5;
}

.scene-bars {
  height: 7rem;
  padding: 1rem;
  border-radius: 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.8rem;
  background: linear-gradient(180deg, #fffaf0, #ffffff);
  border: 1px solid rgba(23, 21, 18, 0.06);
}

.scene-bars .bar {
  flex: 1;
  min-height: 20%;
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(224, 180, 88, 0.25) 100%);
  animation: rise 2.6s ease-in-out infinite;
}

.scene-bars .bar:nth-child(2) {
  animation-delay: 0.2s;
}

.scene-bars .bar:nth-child(3) {
  animation-delay: 0.4s;
}

.scene-bars .bar:nth-child(4) {
  animation-delay: 0.6s;
}

.floating-panel {
  width: 13.5rem;
  padding: 1rem 1rem 1.05rem;
}

.floating-panel h3,
.floating-panel p {
  margin: 0;
}

.floating-panel h3 {
  color: var(--ink);
  font-size: 1.08rem;
  margin-top: 0.35rem;
}

.floating-panel p {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.6;
}

.floating-panel-1 {
  top: 2rem;
  right: 0.5rem;
  transform: translateZ(82px) rotate(-6deg);
  animation: floatCard 6s ease-in-out infinite;
}

.floating-panel-2 {
  left: 0.4rem;
  bottom: 6.4rem;
  transform: translateZ(95px) rotate(5deg);
  animation: floatCard 7s ease-in-out infinite reverse;
}

.floating-panel-3 {
  right: 2rem;
  bottom: 1rem;
  transform: translateZ(110px) rotate(-4deg);
  animation: floatCard 5.6s ease-in-out infinite;
}

.services-grid,
.process-grid,
.proof-stats,
.advantages-grid {
  display: grid;
  gap: 1.1rem;
}

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

.service-card,
.process-card,
.proof-stat,
.advantage-card {
  padding: 1.5rem;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.service-card:hover,
.process-card:hover,
.proof-stat:hover,
.advantage-card:hover,
.about-visual-card:hover,
.contact-card:hover,
.legal-section:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  border-color: rgba(224, 180, 88, 0.3);
}

.service-icon {
  width: 3.25rem;
  height: 3.25rem;
  margin: 0.9rem 0 1rem;
}

.service-link {
  display: inline-flex;
  margin-top: 1.1rem;
  color: var(--ink);
  font-weight: 800;
}

.service-link::after {
  content: "↗";
  margin-left: 0.4rem;
}

.split-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.about-visual {
  perspective: 1200px;
}

.about-visual-card {
  min-height: 32rem;
  padding: 2rem;
  background:
    radial-gradient(circle at top left, rgba(224, 180, 88, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 239, 0.94));
}

.about-badge {
  position: absolute;
  right: 1.4rem;
  top: 1.4rem;
  max-width: 11.5rem;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(23, 21, 18, 0.08);
  box-shadow: 0 18px 40px rgba(35, 27, 16, 0.1);
}

.about-badge strong {
  display: block;
  color: var(--ink);
  font-size: 2rem;
}

.about-badge span {
  color: var(--muted);
  line-height: 1.55;
}

.about-card-main {
  height: 100%;
  padding: 2rem;
  border-radius: 28px;
  border: 1px solid rgba(23, 21, 18, 0.08);
  background: rgba(255, 255, 255, 0.96);
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 1.2rem;
}

.about-card-main img {
  width: 6rem;
  height: 6rem;
}

.about-card-main p {
  max-width: 18rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.about-card-lines {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  display: grid;
  gap: 0.7rem;
}

.about-card-lines span {
  display: block;
  height: 0.85rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(224, 180, 88, 0.3), rgba(23, 21, 18, 0.06));
}

.about-card-lines span:nth-child(1) {
  width: 68%;
}

.about-card-lines span:nth-child(2) {
  width: 84%;
}

.about-card-lines span:nth-child(3) {
  width: 54%;
}

.about-copy {
  display: grid;
  gap: 1.1rem;
}

.bullet-list,
.legal-section ul {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 0.2rem 0 0;
  list-style: none;
}

.bullet-list li {
  display: flex;
  gap: 0.75rem;
  align-items: start;
  color: var(--text);
  line-height: 1.7;
}

.bullet-list li span {
  width: 0.8rem;
  height: 0.8rem;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #f2d58d);
  box-shadow: 0 0 0 5px rgba(224, 180, 88, 0.16);
  flex-shrink: 0;
}

.skills-list {
  display: grid;
  gap: 1rem;
  margin-top: 0.4rem;
}

.skill-item {
  display: grid;
  gap: 0.5rem;
}

.skill-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text);
  font-weight: 800;
}

.skill-track {
  height: 0.85rem;
  border-radius: 999px;
  background: rgba(23, 21, 18, 0.06);
  overflow: hidden;
}

.skill-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), #f2d58d);
}

.split-layout-reverse {
  grid-template-columns: 1.02fr 1fr;
}

.advantages-copy {
  display: grid;
  gap: 1rem;
}

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

.advantage-index {
  color: var(--gold);
  font-size: 1.65rem;
}

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

.process-card {
  min-height: 100%;
}

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: var(--ink);
  background: linear-gradient(135deg, rgba(224, 180, 88, 0.26), rgba(244, 228, 184, 0.45));
  box-shadow: inset 0 0 0 1px rgba(23, 21, 18, 0.08);
}

.proof-stat {
  padding: 1.6rem;
}

.counter-number {
  display: block;
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 0.7rem;
}


.logos-marquee {
  margin-top: 1.7rem;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(23, 21, 18, 0.08);
  background: rgba(255, 255, 255, 0.85);
}

.logos-track {
  display: flex;
  width: max-content;
  gap: 0.9rem;
  padding: 0.75rem;
  animation: marquee 22s linear infinite;
}

.logo-token {
  white-space: nowrap;
}

.contact-shell {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: 1rem;
}

.contact-card {
  padding: 1.5rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.field-group {
  display: grid;
  gap: 0.55rem;
}

.field-group span {
  font-weight: 800;
  color: var(--ink);
}

.field-group input,
.field-group textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(23, 21, 18, 0.12);
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  padding: 1rem 1.05rem;
  outline: 0;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.field-group input:focus,
.field-group textarea:focus {
  border-color: rgba(224, 180, 88, 0.65);
  box-shadow: 0 0 0 5px rgba(224, 180, 88, 0.12);
  transform: translateY(-1px);
}

.contact-submit {
  width: fit-content;
}

.form-note {
  font-size: 0.92rem;
}

.footer {
  position: relative;
  z-index: 1;
  padding: 1.4rem 0 2.2rem;
  border-top: 1px solid rgba(23, 21, 18, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

.footer-inner,
.footer-bottom {
  display: grid;
  gap: 1.6rem;
}

.footer-inner {
  padding-top: 1.2rem;
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
}

.footer-brand {
  display: grid;
  gap: 1rem;
}

.footer-brand-block {
  width: fit-content;
}

.footer-column {
  display: grid;
  gap: 0.85rem;
}

.footer-links {
  gap: 0.8rem 1rem;
}

.footer-stack {
  flex-direction: column;
  gap: 0.4rem;
}

.footer-bottom {
  padding-top: 1rem;
  border-top: 1px solid rgba(23, 21, 18, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
}

.legal-hero {
  padding: 4rem 0 2rem;
}

.legal-hero-inner {
  display: grid;
  gap: 1rem;
  padding: 2.1rem;
  border-radius: 32px;
  border: 1px solid rgba(23, 21, 18, 0.08);
  background:
    radial-gradient(circle at top right, rgba(224, 180, 88, 0.18), transparent 25%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 239, 0.94));
  box-shadow: var(--shadow-soft);
}

.legal-shell {
  padding-top: 1rem;
}

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

.legal-section {
  padding: 1.5rem;
}

.legal-section ul {
  list-style: disc;
  padding-left: 1.25rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
  transition-delay: var(--delay, 0s);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, 14px, 0);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateZ(90px) translateY(0) rotate(-4deg);
  }
  50% {
    transform: translateZ(110px) translateY(-10px) rotate(-2deg);
  }
}

.floating-panel-2 {
  animation-name: floatCardTwo;
}

@keyframes floatCardTwo {
  0%,
  100% {
    transform: translateZ(95px) translateY(0) rotate(5deg);
  }
  50% {
    transform: translateZ(115px) translateY(-12px) rotate(2deg);
  }
}

.floating-panel-3 {
  animation-name: floatCardThree;
}

@keyframes floatCardThree {
  0%,
  100% {
    transform: translateZ(110px) translateY(0) rotate(-4deg);
  }
  50% {
    transform: translateZ(126px) translateY(-9px) rotate(-1deg);
  }
}

@keyframes rise {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.14);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (min-width: 960px) {
  .hero-layout,
  .split-layout,
  .contact-shell {
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  }

  .services-grid,
  .advantages-grid,
  .proof-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .navbar {
    gap: 0.8rem;
  }

  .nav-links,
  .header-actions {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .mobile-panel {
    display: block;
    border-top: 1px solid rgba(23, 21, 18, 0.06);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 40px rgba(35, 27, 16, 0.08);
  }

  .mobile-panel[hidden] {
    display: none !important;
  }

  .mobile-panel-inner {
    padding: 0.8rem 0 1rem;
  }

  .mobile-nav {
    display: grid;
    gap: 0.85rem;
  }

  .mobile-nav a {
    font-weight: 700;
  }
 
  .mini-stats,
  .services-grid,
  .advantages-grid,
  .process-grid,
  .proof-stats,
  .footer-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-layout,
  .split-layout,
  .split-layout-reverse,
  .contact-shell {
    grid-template-columns: 1fr;
  }
 
.hero-scene-media{
  display: none;
}
  .hero-title {
    max-width: 100%;
    font-size: 4.2vw;
   }

  .hero-scene {
    min-height: 32rem;
  }

  .scene-main-card {
    inset: 3rem 4.2rem 4.4rem 3.2rem;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100% - 1.2rem, 100% - 1.2rem);
  }

  .section {
    padding: 4.2rem 0;
  }

  .hero {
    padding: 2rem 0 4rem;
  }

  .hero-title,.section-title{
    max-width: none;
    font-size: clamp(1.15rem, 6vw, 3.2rem);
    line-height: 1.4em;
  }

  .mini-stats,
  .services-grid,
  .advantages-grid,
  .process-grid,
  .proof-stats,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .hero-actions .btn,
  .contact-actions .btn,
  .contact-submit {
    width: 100%;
  }

  .hero-scene {
    min-height: 28rem;
    padding: 1rem;
    border-radius: 30px;
  }

  .scene-main-card {
    inset: 1.8rem 1rem 4.2rem 1rem;
    padding: 1rem;
  }

  .floating-panel {
    width: 10.4rem;
    padding: 0.8rem;
  }

  .floating-panel h3 {
    font-size: 0.92rem;
  }

  .floating-panel p {
    font-size: 0.82rem;
  }

  .floating-panel-1 {
    top: 0.8rem;
    right: 0.2rem;
  }

  .floating-panel-2 {
    left: -0.2rem;
    bottom: 5rem;
  }

  .floating-panel-3 {
    right: 0.8rem;
    bottom: 0.2rem;
  }

  .scene-brand-row {
    align-items: start;
  }

  .scene-brand-row img {
    width: 3.5rem;
    height: 3.5rem;
  }

  .about-visual-card {
    min-height: 24rem;
    padding: 1rem;
  }

  .about-badge {
    position: static;
    max-width: none;
    margin-bottom: 1rem;
  }

  .about-card-main {
    padding: 1.2rem;
  }

  .contact-card,
  .service-card,
  .process-card,
  .proof-stat,
  .advantage-card,
  .mini-stat,
  .legal-section {
    padding: 1.2rem;
  }

  .legal-hero-inner {
    padding: 1.4rem;
  }
}

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


/* Hero visual refreshed with the KOALIS dashboard mockup */
.hero {
  background: linear-gradient(180deg, #ffffff 0%, #fffdf8 100%);
}

.hero::after {
  opacity: 0.22;
}

.hero-visual-column {
  perspective: 1800px;
}

.hero-scene-media {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  padding: clamp(1rem, 1.8vw, 1.35rem);
  border-radius: 40px;
  background:
    radial-gradient(circle at top left, rgba(224, 180, 88, 0.12), transparent 24%),
    linear-gradient(180deg, #fffefb 0%, #fffaf0 100%);
  border: 1px solid rgba(23, 21, 18, 0.08);
  box-shadow: 0 36px 90px rgba(35, 27, 16, 0.12);
  transform-style: preserve-3d;
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 180ms ease, box-shadow var(--ease);
  overflow: hidden;
}

.hero-scene-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.32));
  pointer-events: none;
}

.hero-scene-media::after {
  content: "";
  position: absolute;
  inset: auto 6% 4% 6%;
  height: 18%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(224, 180, 88, 0.18), transparent 70%);
  filter: blur(24px);
  pointer-events: none;
}

.hero-scene-media:hover {
  box-shadow: 0 44px 110px rgba(35, 27, 16, 0.16);
}

.hero-scene-halo {
  position: absolute;
  border-radius: 50%;
  filter: blur(14px);
  pointer-events: none;
}

.hero-scene-halo-top {
  width: 12rem;
  height: 12rem;
  top: -2rem;
  right: -2rem;
  background: radial-gradient(circle, rgba(224, 180, 88, 0.18), transparent 68%);
}

.hero-scene-halo-bottom {
  width: 10rem;
  height: 10rem;
  bottom: -2rem;
  left: -2rem;
  background: radial-gradient(circle, rgba(244, 228, 184, 0.36), transparent 70%);
}

.hero-scene-image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 652 / 632;
  object-fit: contain;
  border-radius: 30px;
  transform: translateZ(34px);
  transition: transform 220ms ease;
}

.hero-scene-media:hover .hero-scene-image {
  transform: translateZ(46px) scale(1.015);
}

@media (max-width: 959px) {
  .hero-scene-media {
    border-radius: 30px;
    padding: 0.9rem;
  }

  .hero-scene-image {
    border-radius: 24px;
  }
}


body.menu-open {
  overflow: hidden;
}

.about-simple-shell {
  max-width: 860px;
  display: grid;
  gap: 1.1rem;
}

.about-simple-shell .skills-list {
  margin-top: 0.4rem;
}

.logos-marquee {
  display: none !important;
}
