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

:root {
  --cream: #f5f0e8;
  --cream-dark: #ede6d6;
  --cream-mid: #e8dfc9;

  --green-deep: #3a4f3a;
  --green-dark: #2e3f2e;
  --green-mid: #4a6248;
  --green-light: #5e7a5c;
  --green-muted: #7a9478;

  --blue-steel: #6b8899;
  --blue-mist: #8aa4b2;
  --blue-pale: #b8ccd6;

  --gold: #b8956a;
  --gold-light: #d4b896;
  --gold-pale: #e8d4b8;

  --text-dark: #1e2b1e;
  --text-mid: #3a4f3a;
  --text-light: #6a806a;
  --text-muted: #8a9e8a;
}

html,
body {
  scroll-behavior: smooth;
  min-height: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background: var(--cream);
  padding: 0 56px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(58, 79, 58, 0.12);
  position: relative;
  z-index: 100;
}

body.page-processos header,
body.page-servicos header,
body.page-sobre header,
body.page-legal header {
  position: sticky;
  top: 0;
}

.topbar {
  background: var(--green-dark);
  padding: 9px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.6);
}

.topbar-item svg {
  opacity: 0.7;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: border-color .2s;
}

.topbar-social a:hover {
  border-color: var(--gold);
}

.topbar-social svg {
  width: 11px;
  height: 11px;
  stroke: rgba(255, 255, 255, 0.6);
  fill: none;
  stroke-width: 1.5;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-gem {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 6px;
  color: var(--green-deep);
  text-transform: uppercase;
}

.logo-tagline {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.logo-tagline::before,
.logo-tagline::after {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: var(--green-light);
}

.logo-sub {
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--green-light);
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 0;
}

nav a {
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--text-mid);
  text-transform: uppercase;
  padding: 0 18px;
  height: 80px;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: color .2s;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}

nav a:hover {
  color: var(--green-deep);
}

nav a:hover::after,
nav a.active::after {
  transform: scaleX(1);
}

nav a.active {
  color: var(--green-deep);
  font-weight: 600;
}

.btn-nav-cta {
  background: var(--green-deep);
  color: #fff !important;
  padding: 0 26px !important;
  margin-left: 18px;
  font-weight: 600 !important;
  letter-spacing: 2px;
  height: 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  transition: background .2s !important;
}

.btn-nav-cta:hover {
  background: var(--green-mid) !important;
}

.btn-nav-cta::after {
  display: none !important;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  position: relative;
}

.hero-content {
  padding: 28px 36px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-eyebrow-bar,
.hero-ornament-line {
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.hero-eyebrow-text {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 0;
  letter-spacing: 0.5px;
}

.hero-headline .hl-blue {
  font-style: italic;
  font-weight: 400;
  color: var(--blue-steel);
}

.hero-ornament {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0;
}

.hero-ornament-diamond,
.intro-ornament-diamond {
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.hero-sub,
.page-hero-sub,
.services-intro-left p,
.services-cards-header p,
.cta-strip-text p,
.intro-text p,
.section-header p {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.9;
  color: var(--text-light);
}

.hero-sub {
  max-width: 360px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: var(--green-dark);
  padding: 16px 30px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s;
  border: none;
  cursor: pointer;
}

body.page-home .btn-primary {
  background: var(--green-deep);
  color: #fff;
}

.btn-primary:hover {
  background: var(--gold-light);
}

body.page-home .btn-primary:hover {
  background: var(--green-mid);
}

.btn-primary .arrow-icon {
  width: 16px;
  height: 16px;
  transition: transform .2s;
}

.btn-primary:hover .arrow-icon {
  transform: translateX(3px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: 2px;
  cursor: pointer;
  transition: color .2s, border-color .2s;
}

.btn-ghost:hover {
  color: var(--green-deep);
  border-color: var(--gold);
}

.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(58, 79, 58, 0.12);
}

.hero-stat {
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid rgba(58, 79, 58, 0.12);
}

.hero-stat:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}

.hero-stat-num,
.value-num,
.timeline-year,
.team-name,
.stat-num {
  font-family: var(--font-display);
}

.hero-stat-num {
  font-size: 32px;
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 5px;
}

.hero-stat-num sup,
.stat-num sup {
  font-size: 16px;
  font-weight: 300;
  vertical-align: super;
}

.hero-stat-label,
.feature-title,
.step-tag,
.guarantee-title,
.faq-question,
.diff-title,
.stat-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  background: var(--green-deep);
  min-height: 420px;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-image-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100px;
  background: linear-gradient(to right, var(--cream) 0%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}

.hero-image-wrap::after,
.hero-corner-bl {
  content: '';
  position: absolute;
  z-index: 4;
  pointer-events: none;
}

.hero-image-wrap::after {
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-top: 1.5px solid var(--gold);
  border-right: 1.5px solid var(--gold);
}

.hero-corner-bl {
  bottom: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  border-bottom: 1.5px solid var(--gold);
  border-left: 1.5px solid var(--gold);
}

.hero-svg-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.features {
  background: var(--green-deep);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--gold);
  flex: 1;
}

.feature {
  padding: 32px 32px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: background .25s;
}

.feature:last-child {
  border-right: none;
}

.feature::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.feature:hover {
  background: rgba(255, 255, 255, 0.03);
}

.feature:hover::before {
  transform: scaleX(1);
}

.feature-icon-box {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(184, 149, 106, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon-box svg,
.service-card-icon svg,
.diff-icon-box svg,
.team-avatar svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-icon-box svg {
  stroke: var(--gold);
}

.feature-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fff;
}

.feature-desc {
  font-size: 11.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
}

.page-hero {
  background: var(--green-deep);
  padding: 72px 56px 64px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40%;
  background: linear-gradient(135deg, transparent 30%, rgba(184, 149, 106, 0.06) 100%);
}

.page-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.page-hero-eyebrow-bar,
.section-label-bar {
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.page-hero-eyebrow-text,
.section-label-text {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.page-hero h1,
.services-intro-left h2,
.services-cards-header h2,
.section-header h2,
.cta-strip-text h3,
.value-content h4,
.timeline-title,
.stat-label,
.step-tag {
  font-family: var(--font-display);
}

.page-hero h1 {
  font-size: 58px;
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}

.page-hero h1 em,
.services-intro-left h2 em,
.services-cards-header h2 em,
.section-header h2 em,
.cta-strip-text h3 em,
.intro-text h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}

.page-hero-sub {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.55);
  max-width: 520px;
}

.page-hero-corner-tr,
.page-hero-corner-bl {
  position: absolute;
  width: 60px;
  height: 60px;
  opacity: .5;
}

.page-hero-corner-tr {
  top: 24px;
  right: 24px;
  border-top: 1.5px solid var(--gold);
  border-right: 1.5px solid var(--gold);
}

.page-hero-corner-bl {
  bottom: 24px;
  left: 24px;
  border-bottom: 1.5px solid var(--gold);
  border-left: 1.5px solid var(--gold);
  opacity: .3;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.section-label--center {
  justify-content: center;
}

.section-label-text {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.section-label-bar--muted {
  background: rgba(255, 255, 255, 0.3);
}

.legal-content {
  background: var(--cream);
  padding: 72px 56px;
}

.legal-card {
  background: #fff;
  border: 1px solid rgba(58, 79, 58, 0.1);
  margin: 0 auto;
  max-width: 980px;
  padding: 48px 56px;
}

.legal-updated {
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  margin: 0 0 28px;
  text-transform: uppercase;
}

.legal-card h2 {
  color: var(--text-dark);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  margin: 34px 0 12px;
}

.legal-card h2:first-of-type {
  margin-top: 0;
}

.legal-card p {
  color: var(--text-light);
  font-size: 13px;
  line-height: 1.9;
  margin: 0 0 14px;
}

.legal-card a {
  color: var(--green-deep);
  font-weight: 600;
  text-decoration-color: var(--gold);
}

@media (max-width: 768px) {
  .legal-content {
    padding: 40px 24px;
  }

  .legal-card {
    padding: 32px 24px;
  }
}

.process-nav {
  background: var(--cream-mid);
  border-bottom: 2px solid var(--gold);
  padding: 0 56px;
  display: flex;
  gap: 0;
}

.process-tab {
  padding: 20px 28px;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  transition: color .2s;
  border: none;
  background: none;
  font-family: var(--font-body);
}

.process-tab::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}

.process-tab.active,
.step-tab.active {
  color: var(--green-deep);
}

.process-tab.active::after {
  transform: scaleX(1);
}

.process-tab:hover {
  color: var(--text-mid);
}

.process-panel {
  display: none;
}

.process-panel.active {
  display: block;
}

.steps-section,
.section-timeline,
.section-team,
.services-cards,
.section-differential,
.faq-section {
  padding: 80px 56px;
}

.steps-header,
.guarantees-header,
.faq-header,
.services-cards-header,
.section-header {
  margin-bottom: 64px;
}

.steps-header h2,
.services-intro-left h2,
.services-cards-header h2,
.section-header h2 {
  font-size: 44px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.steps-header h2 em,
.services-intro-left h2 em,
.services-cards-header h2 em,
.section-header h2 em {
  color: var(--blue-steel);
}

.steps-header p,
.guarantees-header p,
.faq-header p,
.services-cards-header p,
.section-header p,
.cta-strip-text p,
.intro-text p {
  max-width: 520px;
  line-height: 1.8;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  position: relative;
}

.step-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 39px;
  top: 56px;
  bottom: 0;
  width: 1px;
  background: rgba(184, 149, 106, 0.25);
  z-index: 0;
}

.step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 56px;
  height: 56px;
  border: 1.5px solid var(--gold);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.step-circle-num {
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.step-right {
  padding: 0 0 56px 32px;
}

.step-title {
  font-size: 30px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 13px;
  line-height: 1.9;
  color: var(--text-light);
  max-width: 580px;
  margin-bottom: 20px;
}

.step-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.step-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-mid);
}

.step-checklist li::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border: 1px solid var(--gold);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23b8956a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='3 8 6 11 13 5'/%3E%3C/svg%3E") center/12px no-repeat;
}

.guarantees-section {
  background: var(--green-deep);
  border-top: 2px solid var(--gold);
}

.guarantees-header h2 {
  font-size: 40px;
}

.guarantees-header p {
  color: rgba(255, 255, 255, 0.5);
  max-width: 440px;
}

.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.guarantee-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: background .2s;
}

.guarantee-item:hover {
  background: rgba(255, 255, 255, 0.07);
}

.guarantee-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.guarantee-item:hover::before {
  transform: scaleX(1);
}

.guarantee-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(184, 149, 106, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.guarantee-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
}

.guarantee-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}

.guarantee-text {
  font-size: 12px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.4);
}

.faq-section {
  background: var(--cream-mid);
  border-top: 1px solid rgba(58, 79, 58, 0.1);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 800px;
}

.faq-item {
  background: var(--cream);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  text-align: left;
  transition: color .2s;
}

.faq-question:hover {
  color: var(--green-mid);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border: 1px solid rgba(58, 79, 58, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease, border-color .2s;
}

.faq-icon svg {
  width: 10px;
  height: 10px;
  stroke: var(--green-mid);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  transition: transform .3s;
}

.faq-item.open .faq-icon {
  border-color: var(--gold);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  font-size: 12.5px;
  line-height: 1.85;
  color: var(--text-light);
  padding: 0 28px;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 28px 22px;
}

.cta-strip {
  background: var(--green-dark);
  border-top: 2px solid var(--gold);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-strip-text h3 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
}

.cta-strip-text h3 em {
  font-style: italic;
  color: var(--gold-light);
}

.cta-strip-text p {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.5);
}

.site-footer {
  background: var(--cream-dark);
  border-top: 1px solid rgba(58, 79, 58, 0.12);
  padding: 22px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-gem-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer-tagline {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-sep {
  width: 1px;
  height: 12px;
  background: var(--text-muted);
  opacity: 0.4;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--green-mid);
}

.steps-section {
  padding: 80px 56px;
}

.steps-header h2 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-dark);
}

.steps-header p {
  color: var(--text-light);
}

.process-nav {
  background: var(--cream-mid);
  border-bottom: 2px solid var(--gold);
  padding: 0 56px;
}

.process-tab {
  padding: 20px 28px;
}

.process-tab::after {
  background: var(--gold);
}

.process-panel.active {
  display: block;
}

.guarantees-section {
  background: var(--green-deep);
  border-top: 2px solid var(--gold);
  padding: 72px 56px;
}

.guarantees-header h2 {
  color: #fff;
}

.guarantees-header p {
  color: rgba(255, 255, 255, 0.5);
}

.faq-section {
  padding: 80px 56px;
  background: var(--cream-mid);
  border-top: 1px solid rgba(58, 79, 58, 0.1);
}

.cta-strip {
  background: var(--green-dark);
}

.services-intro {
  padding: 80px 56px 0;
}

.services-intro-inner {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: start;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(58, 79, 58, 0.1);
}

.services-intro-left h2 {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.services-intro-left p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--text-light);
}

.services-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.highlight-item {
  background: var(--cream-mid);
  padding: 28px 28px;
  position: relative;
  overflow: hidden;
}

.highlight-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .3s ease;
}

.highlight-item:hover::before {
  transform: scaleY(1);
}

.highlight-num {
  font-size: 36px;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 8px;
}

.highlight-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 6px;
}

.highlight-text {
  font-size: 11.5px;
  line-height: 1.7;
  color: var(--text-light);
}

.services-cards {
  padding: 72px 56px;
}

.services-cards-header h2 {
  font-size: 40px;
  margin-bottom: 12px;
}

.services-cards-header p {
  font-size: 13px;
  color: var(--text-light);
  max-width: 500px;
  line-height: 1.8;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--green-deep);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: background .25s;
  cursor: default;
}

.service-card:hover {
  background: var(--green-mid);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(184, 149, 106, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-card-title {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.service-card-desc {
  font-size: 12px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 28px;
}

.service-card-list {
  list-style: none;
}

.service-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.service-card-list li::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-top: 7px;
}

.section-differential {
  background: var(--cream-mid);
  border-top: 1px solid rgba(58, 79, 58, 0.1);
  padding: 80px 56px;
}

.differential-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 56px;
}

.diff-item {
  background: var(--cream);
  padding: 40px 36px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: transform .2s ease;
}

.diff-item:hover {
  transform: translateX(4px);
}

.diff-icon-box {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border: 1px solid rgba(58, 79, 58, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.diff-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 8px;
}

.diff-desc {
  font-size: 12.5px;
  line-height: 1.8;
  color: var(--text-light);
}

.section-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid rgba(58, 79, 58, 0.1);
}

.intro-text {
  padding: 72px 56px;
  border-right: 1px solid rgba(58, 79, 58, 0.1);
}

.intro-text h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.intro-text p {
  font-size: 13px;
  margin-bottom: 16px;
}

.intro-ornament {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 28px 0;
}

.intro-values {
  padding: 72px 56px;
  background: var(--cream-mid);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

.value-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.value-num {
  font-size: 48px;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1;
  flex-shrink: 0;
  margin-top: -8px;
}

.value-content h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 8px;
}

.section-timeline {
  padding: 80px 56px;
  background: var(--cream);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--gold-pale);
  z-index: 0;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.timeline-dot {
  width: 56px;
  height: 56px;
  border: 1.5px solid var(--gold);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.timeline-dot svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
}

.timeline-year {
  font-size: 30px;
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 8px;
}

.timeline-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 10px;
}

.timeline-desc {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-light);
}

.section-team {
  padding: 80px 56px;
  background: var(--cream-mid);
  border-top: 1px solid rgba(58, 79, 58, 0.1);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.team-card {
  background: var(--cream);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease;
}

.team-card:hover {
  transform: translateY(-4px);
}

.team-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.team-card:hover::after {
  transform: scaleX(1);
}

.team-avatar {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(184, 149, 106, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.team-avatar svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold-light);
  fill: none;
}

.team-name {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.team-role {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.team-bio {
  font-size: 12px;
  line-height: 1.8;
  color: var(--text-light);
}

.stats-strip {
  background: var(--green-deep);
  border-top: 2px solid var(--gold);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-block {
  padding: 40px 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
}

.stat-block:last-child {
  border-right: none;
}

.stat-num {
  font-size: 52px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp .6s ease both;
}

.delay-1 {
  animation-delay: .1s;
}

.delay-2 {
  animation-delay: .2s;
}

.delay-3 {
  animation-delay: .3s;
}

.delay-4 {
  animation-delay: .4s;
}

@media (max-width: 760px) {
  body {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0) 260px), var(--cream);
  }

  .topbar {
    padding: 10px 18px;
    justify-content: center;
  }

  .topbar-left {
    width: 100%;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }

  .topbar-right {
    display: none;
  }

  .topbar-item {
    font-size: 9px;
    letter-spacing: 1px;
  }

  header {
    height: auto;
    padding: 14px 0 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(245, 240, 232, 0.96);
    backdrop-filter: blur(14px);
  }

  .logo {
    padding: 0 18px 12px;
    gap: 10px;
  }

  .logo-gem {
    width: 34px;
    height: 34px;
  }

  .logo-name {
    font-size: 12px;
    letter-spacing: 4px;
  }

  .logo-sub {
    font-size: 7px;
    letter-spacing: 3px;
  }

  nav {
    overflow-x: auto;
    padding: 0 14px 12px;
    gap: 8px;
    scrollbar-width: none;
  }

  nav::-webkit-scrollbar {
    display: none;
  }

  nav a,
  .btn-nav-cta {
    height: 38px !important;
    padding: 0 14px !important;
    margin-left: 0;
    flex: 0 0 auto;
    border: 1px solid rgba(58, 79, 58, 0.14);
    background: rgba(255, 255, 255, 0.28);
    font-size: 9px;
    letter-spacing: 1.4px;
  }

  nav a::after {
    left: 12px;
    right: 12px;
    bottom: -1px;
  }

  .btn-nav-cta {
    background: var(--green-deep) !important;
    border-color: var(--green-deep);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 44px 20px 30px;
    gap: 34px;
  }

  .hero-content {
    padding: 0;
    max-width: none;
  }

  .hero-headline {
    font-size: clamp(42px, 15vw, 62px);
    line-height: 0.96;
  }

  .hero-sub,
  .page-hero-sub,
  .services-intro-left p,
  .services-cards-header p,
  .faq-header p,
  .cta-strip-text p,
  .intro-text p,
  .section-header p {
    font-size: 13px;
    line-height: 1.75;
  }

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

  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding-top: 12px;
  }

  .hero-stat {
    padding-right: 10px;
  }

  .hero-stat-num {
    font-size: 30px;
  }

  .hero-stat-label {
    font-size: 7px;
    letter-spacing: 1.4px;
  }

  .hero-image-wrap {
    width: min(100%, 360px);
    height: 420px;
    margin: 0 auto;
  }

  .hero-image-wrap::before {
    top: -12px;
    right: -12px;
    bottom: 12px;
    left: 12px;
  }

  .hero-image-wrap::after,
  .hero-corner-bl,
  .hero-svg-overlay,
  .page-hero::before,
  .page-hero-corner-tr,
  .page-hero-corner-bl {
    display: none;
  }

  .features,
  .services-highlights,
  .cards-grid,
  .differential-grid,
  .team-grid,
  .stats-strip {
    grid-template-columns: 1fr;
  }

  .feature,
  .highlight-item,
  .service-card,
  .diff-item,
  .team-card,
  .stat-block {
    padding: 26px 22px;
  }

  .feature {
    border-right: 0;
    border-bottom: 1px solid rgba(58, 79, 58, 0.1);
  }

  .services-intro,
  .services-cards,
  .section-differential,
  .steps-section,
  .guarantees-section,
  .faq-section,
  .section-timeline,
  .section-team,
  .section-intro {
    padding: 54px 20px;
  }

  .services-intro-inner,
  .cta-strip,
  .section-intro {
    display: grid;
    gap: 32px;
  }

  .services-intro-inner {
    grid-template-columns: 1fr;
  }

  .services-intro-left h2,
  .services-cards-header h2,
  .section-header h2,
  .cta-strip-text h3,
  .intro-text h2 {
    font-size: 36px;
    line-height: 1.08;
  }

  .process-nav {
    padding: 0 14px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .process-nav::-webkit-scrollbar {
    display: none;
  }

  .process-tab {
    flex: 0 0 auto;
    padding: 17px 18px;
    font-size: 9px;
    letter-spacing: 1.5px;
  }

  .step-item {
    grid-template-columns: 54px 1fr;
  }

  .step-item:not(:last-child)::before {
    left: 26px;
    top: 48px;
  }

  .step-circle {
    width: 46px;
    height: 46px;
  }

  .step-right {
    padding: 0 0 42px 18px;
  }

  .step-title {
    font-size: 25px;
    line-height: 1.12;
  }

  .guarantees-grid,
  .timeline,
  .team-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .guarantee-item,
  .faq-question,
  .team-card,
  .diff-item {
    padding: 26px 22px;
  }

  .faq-question {
    padding: 20px 18px;
  }

  .faq-item.open .faq-answer {
    padding: 0 18px 20px;
  }

  .cta-strip {
    padding: 44px 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 17px 22px;
    white-space: normal;
    text-align: center;
  }

  .site-footer {
    padding: 24px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .footer-right {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-sep {
    display: none;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 12px;
  }
}
