.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
  overflow-x: hidden;
  max-width: 100%;
}

.site-header.is-scrolled {
  background: rgba(244, 246, 242, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}

.site-header.is-scrolled .site-header__logo,
.site-header.is-scrolled .site-header__nav a {
  color: var(--text);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.site-header__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: -0.01em;
  transition: color var(--transition);
}

.site-header__logo span {
  color: var(--accent);
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.site-header__nav a {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  transition: color var(--transition);
}

.site-header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.site-header__nav a:hover {
  color: var(--white);
}

.site-header__nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header__cta {
  display: none;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  z-index: 1002;
  position: relative;
}

.burger__line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
  transform-origin: center;
}

.site-header.is-scrolled .burger__line {
  background: var(--text);
}

.burger.is-active .burger__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger.is-active .burger__line:nth-child(2) {
  opacity: 0;
}

.burger.is-active .burger__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(41, 48, 45, 0.96);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  overflow-x: hidden;
  max-width: 100vw;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-ui);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0.75rem 1.5rem;
  transition: color var(--transition);
}

.mobile-menu a:hover {
  color: var(--accent);
}

body.menu-open {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(4rem, 10vh, 8rem);
  overflow: hidden;
  max-width: 100%;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(77, 107, 91, 0.15) 0%, rgba(77, 107, 91, 0.55) 50%, rgba(41, 48, 45, 0.75) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__label {
  margin-bottom: 1.5rem;
}

.hero__title {
  color: var(--white);
  max-width: 14ch;
  margin-bottom: 1.5rem;
}

.hero__text {
  color: rgba(255, 255, 255, 0.8);
  max-width: 48ch;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__stats {
  display: flex;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: clamp(3rem, 6vh, 5rem);
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent);
  line-height: 1;
}

.hero__stat-label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.5rem;
}

.value-prop {
  padding: clamp(5rem, 10vh, 8rem) 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  overflow-x: hidden;
  max-width: 100%;
}

.value-prop__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.value-prop__text h2 {
  margin-bottom: 1.5rem;
  color: var(--text);
}

.value-prop__text p {
  margin-bottom: 1.25rem;
}

.value-prop__editorial {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(142, 165, 145, 0.3);
}

.value-prop__num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--secondary);
  line-height: 1;
  opacity: 0.5;
}

.value-prop__quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--primary);
  line-height: 1.4;
}

.value-prop__visual {
  position: relative;
}

.value-prop__visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.value-prop__badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--primary);
  color: var(--white);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.value-prop__badge-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
}

.value-prop__badge-text {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.signature {
  padding: clamp(5rem, 10vh, 8rem) 0;
  background: var(--contrast-bg);
  color: var(--white);
  overflow-x: hidden;
  max-width: 100%;
}

.signature__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

.signature__image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.signature__image-wrap img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.signature__image-wrap:hover img {
  transform: scale(1.04);
}

.signature__content h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.signature__content p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.25rem;
}

.signature__list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.signature__list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.signature__list svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.showcase {
  padding: clamp(5rem, 10vh, 8rem) 0;
  background: var(--bg);
  overflow-x: hidden;
  max-width: 100%;
}

.showcase__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(3rem, 5vw, 4rem);
  flex-wrap: wrap;
  gap: 1.5rem;
}

.showcase__header h2 {
  max-width: 16ch;
}

.showcase__layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.showcase__featured {
  grid-row: span 2;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 520px;
}

.showcase__featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.showcase__featured:hover img {
  transform: scale(1.03);
}

.showcase__featured-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem;
  background: linear-gradient(transparent, rgba(41, 48, 45, 0.85));
  color: var(--white);
}

.showcase__featured-content h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.showcase__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 240px;
}

.showcase__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.showcase__item:hover img {
  transform: scale(1.05);
}

.showcase__item-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(41, 48, 45, 0.8));
  color: var(--white);
}

.showcase__item-content h3 {
  font-size: 1.1rem;
  color: var(--white);
}

.insight {
  padding: clamp(5rem, 10vh, 8rem) 0;
  background: var(--white);
  overflow-x: hidden;
  max-width: 100%;
}

.insight__wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(3rem, 6vw, 5rem);
}

.insight__sidebar {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
  align-self: start;
}

.insight__sidebar .label {
  margin-bottom: 1rem;
}

.insight__sidebar h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1.5rem;
}

.insight__meta {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(142, 165, 145, 0.3);
}

.insight__body p {
  margin-bottom: 1.5rem;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.75;
}

.insight__body p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3.5rem;
  float: left;
  line-height: 0.8;
  margin-right: 0.75rem;
  margin-top: 0.15rem;
  color: var(--primary);
}

.insight__pullquote {
  margin: 2.5rem 0;
  padding: 2rem 0 2rem 2rem;
  border-left: 3px solid var(--accent);
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-style: italic;
  color: var(--primary);
  line-height: 1.45;
}

.services-block {
  padding: clamp(5rem, 10vh, 8rem) 0;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
  overflow-x: hidden;
  max-width: 100%;
}

.services-block__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.services-block__header h2 {
  margin-bottom: 1rem;
}

.services-block__table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.services-block__table thead {
  background: var(--primary);
  color: var(--white);
}

.services-block__table th {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1.25rem 1.5rem;
  text-align: left;
}

.services-block__table td {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(142, 165, 145, 0.15);
  font-size: 0.95rem;
  vertical-align: top;
}

.services-block__table tr:last-child td {
  border-bottom: none;
}

.services-block__table td:first-child {
  font-family: var(--font-sub);
  font-weight: 500;
  color: var(--text);
  width: 22%;
}

.services-block__table .check {
  color: var(--accent);
  font-weight: 600;
}

.services-block__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.services-block__card {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(142, 165, 145, 0.2);
  transition: transform var(--transition), box-shadow var(--transition);
}

.services-block__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.services-block__card h3 {
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.services-block__card p {
  font-size: 0.9rem;
}

.timeline {
  padding: clamp(5rem, 10vh, 8rem) 0;
  background: var(--primary);
  color: var(--white);
  overflow-x: hidden;
  max-width: 100%;
}

.timeline__header {
  text-align: center;
  margin-bottom: 4rem;
}

.timeline__header h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.timeline__header p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: 0 auto;
}

.timeline__track {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline__track::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.timeline__item {
  position: relative;
  padding-left: 64px;
  padding-bottom: 3rem;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__dot {
  position: absolute;
  left: 16px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--primary);
  box-shadow: 0 0 0 3px rgba(185, 151, 88, 0.3);
}

.timeline__year {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.timeline__item h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.timeline__item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.social-proof {
  padding: clamp(5rem, 10vh, 8rem) 0;
  background: var(--bg);
  overflow-x: hidden;
  max-width: 100%;
}

.social-proof__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.social-proof__testimonials {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.social-proof__testimonial {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(142, 165, 145, 0.15);
  transition: transform var(--transition), box-shadow var(--transition);
}

.social-proof__testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.social-proof__testimonial blockquote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.social-proof__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-proof__author-name {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}

.social-proof__author-loc {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.social-proof__right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.social-proof__logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.social-proof__logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(142, 165, 145, 0.15);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary-accent);
  transition: border-color var(--transition);
}

.social-proof__logo-item:hover {
  border-color: var(--accent);
}

.social-proof__case {
  padding: 2rem;
  background: linear-gradient(135deg, var(--primary), #72897A);
  border-radius: var(--radius-md);
  color: var(--white);
}

.social-proof__case h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.social-proof__case p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.social-proof__case-stat {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent);
}

.cta-block {
  padding: clamp(5rem, 10vh, 7rem) 0;
  background: linear-gradient(135deg, var(--primary) 0%, #72897A 100%);
  text-align: center;
  overflow-x: hidden;
  max-width: 100%;
}

.cta-block h2 {
  color: var(--white);
  max-width: 18ch;
  margin: 0 auto 1.25rem;
}

.cta-block p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.contact-section {
  padding: clamp(5rem, 10vh, 8rem) 0;
  background: var(--white);
  overflow-x: hidden;
  max-width: 100%;
}

.contact-section__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 5vw, 5rem);
}

.contact-section__info h2 {
  margin-bottom: 1.5rem;
}

.contact-section__info p {
  margin-bottom: 2rem;
}

.contact-section__details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-section__detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-section__detail svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}

.contact-section__detail-text {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--text);
}

.contact-section__detail-text span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-form {
  background: var(--bg);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(142, 165, 145, 0.2);
}

.contact-form__group {
  margin-bottom: 1.5rem;
}

.contact-form__group label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.contact-form__group input,
.contact-form__group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(142, 165, 145, 0.3);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form__group input:focus,
.contact-form__group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(77, 107, 91, 0.12);
}

.contact-form__group textarea {
  min-height: 140px;
  resize: vertical;
}

.site-footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.7);
  padding: clamp(3rem, 6vh, 5rem) 0 2rem;
  overflow-x: hidden;
  max-width: 100%;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.site-footer__brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.site-footer__brand span {
  color: var(--accent);
}

.site-footer__desc {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.site-footer__heading {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.site-footer__links a {
  font-size: 0.875rem;
  transition: color var(--transition);
}

.site-footer__links a:hover {
  color: var(--accent);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer__copy {
  font-family: var(--font-ui);
  font-size: 0.75rem;
}

.site-footer__legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.site-footer__legal a {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  transition: color var(--transition);
}

.site-footer__legal a:hover {
  color: var(--accent);
}

.js-marquee-wrap {
  padding: clamp(2rem, 4vh, 3rem) 0;
  background: var(--bg-alt);
  overflow: hidden;
  max-width: 100vw;
  position: relative;
}

.js-mq-row {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}

.js-mq-row.fwd {
  animation: marqueeFwd 40s linear infinite;
}

.js-mq-row.rev {
  animation: marqueeRev 45s linear infinite;
}

.js-mq-row span {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 38px);
  text-transform: uppercase;
  opacity: 0.12;
  color: var(--primary);
  padding: 0 2rem;
  letter-spacing: 0.06em;
}

@keyframes marqueeFwd {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeRev {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.page-hero {
  padding: calc(var(--header-h) + 4rem) 0 clamp(3rem, 6vh, 5rem);
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 60%, #DCE3DD 100%);
  overflow-x: hidden;
  max-width: 100%;
}

.page-hero__content {
  max-width: 720px;
}

.page-hero__content h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero__content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
}

.page-section {
  padding: clamp(4rem, 8vh, 6rem) 0;
  overflow-x: hidden;
  max-width: 100%;
}

.page-section--alt {
  background: var(--bg-alt);
}

.page-section--white {
  background: var(--white);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-grid__image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.content-grid__text h2 {
  margin-bottom: 1.25rem;
}

.content-grid__text p {
  margin-bottom: 1rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.team-card {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(142, 165, 145, 0.15);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.team-card__initials {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 auto 1.25rem;
}

.team-card h3 {
  margin-bottom: 0.25rem;
}

.team-card p {
  font-size: 0.85rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.portfolio-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-card:hover img {
  transform: scale(1.05);
}

.portfolio-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(41, 48, 45, 0.85));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--white);
}

.portfolio-card__overlay h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.portfolio-card__overlay p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(142, 165, 145, 0.25);
}

.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-family: var(--font-sub);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  transition: color var(--transition);
}

.faq-item__question:hover {
  color: var(--primary);
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: var(--accent);
  transition: transform var(--transition);
}

.faq-item__icon::before {
  width: 14px;
  height: 2px;
  top: 11px;
  left: 5px;
}

.faq-item__icon::after {
  width: 2px;
  height: 14px;
  top: 5px;
  left: 11px;
}

.faq-item.is-open .faq-item__icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-item.is-open .faq-item__answer {
  max-height: 400px;
  padding-bottom: 1.5rem;
}

.faq-item__answer p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/9;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.thanks-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 50%, var(--secondary) 100%);
  overflow-x: hidden;
  max-width: 100vw;
}

.thanks-page__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  box-shadow: 0 8px 32px rgba(185, 151, 88, 0.35);
}

.thanks-page__icon svg {
  width: 36px;
  height: 36px;
  color: var(--white);
}

.thanks-page h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--primary);
  margin-bottom: 1rem;
}

.thanks-page p {
  max-width: 480px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
}

.legal-page {
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  overflow-x: hidden;
  max-width: 100%;
}

.legal-page__content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-page__content h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 0.5rem;
}

.legal-page__updated {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.legal-page__content h2 {
  font-family: var(--font-sub);
  font-size: 1.4rem;
  margin: 2.5rem 0 1rem;
  color: var(--primary);
}

.legal-page__content h3 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.75rem;
}

.legal-page__content p {
  margin-bottom: 1rem;
  line-height: 1.75;
}

.legal-page__content ul {
  margin: 0 0 1rem 1.5rem;
  list-style: disc;
}

.legal-page__content li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.stat-counter {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent);
  line-height: 1;
}

@media (min-width: 1025px) {
  .hero__bg img {
    will-change: transform;
  }
}

@media (hover: hover) and (pointer: fine) {
  .portfolio-card {
    perspective: 800px;
  }

  .portfolio-card:hover {
    transform: rotateY(2deg) rotateX(1deg);
  }
}

@media (max-width: 1024px) {
  .site-header__nav,
  .site-header__cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  .value-prop__grid,
  .signature__inner,
  .showcase__layout,
  .insight__wrap,
  .contact-section__grid,
  .content-grid,
  .social-proof__grid {
    grid-template-columns: 1fr;
  }

  .showcase__featured {
    grid-row: auto;
    min-height: 360px;
  }

  .insight__sidebar {
    position: static;
  }

  .services-block__cards,
  .team-grid,
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-block__table {
    display: block;
    overflow-x: auto;
  }
}

@media (max-width: 640px) {
  .hero__stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .services-block__cards,
  .team-grid,
  .portfolio-grid,
  .social-proof__logos {
    grid-template-columns: 1fr;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .value-prop__editorial {
    grid-template-columns: 1fr;
  }

  .value-prop__badge {
    left: 1rem;
    bottom: -1rem;
  }
}
