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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: hidden;
  position: relative;
}

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

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

section,
header,
footer {
  overflow-x: hidden;
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container-sm {
  width: 100%;
  max-width: var(--container-sm);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container-xs {
  width: 100%;
  max-width: var(--container-xs);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(243, 246, 241, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--sh-sm);
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  overflow-x: clip;
  max-width: 100%;
}

.site-header.hero-mode {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.site-header.scrolled,
.site-header.hero-mode.scrolled {
  background: rgba(243, 246, 241, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--sh-sm);
}

.header-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  font-family: var(--f-heading);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--c-primary);
  display: flex;
  align-items: center;
  gap: 0;
  transition: color var(--dur) var(--ease);
  flex-shrink: 0;
  text-decoration: none;
}

.site-header.hero-mode:not(.scrolled) .site-logo {
  color: var(--c-white);
}

.site-logo span {
  color: var(--c-accent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.site-nav a {
  font-family: var(--f-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--c-text);
  text-transform: uppercase;
  opacity: 0.7;
  transition: color var(--dur) var(--ease), opacity var(--dur) var(--ease);
  position: relative;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--c-accent);
  transition: width var(--dur) var(--ease);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

.site-nav a:hover,
.site-nav a.active {
  opacity: 1;
  color: var(--c-primary);
}

.site-header.hero-mode:not(.scrolled) .site-nav a {
  color: rgba(255, 255, 255, 0.85);
  opacity: 1;
}

.site-header.hero-mode:not(.scrolled) .site-nav a:hover,
.site-header.hero-mode:not(.scrolled) .site-nav a.active {
  color: var(--c-white);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--g-btn);
  color: var(--c-white);
  border-radius: var(--r-full);
  font-family: var(--f-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  flex-shrink: 0;
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(185, 152, 91, 0.4);
}

.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  z-index: 102;
  flex-shrink: 0;
}

.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-primary);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease), width var(--dur) var(--ease);
}

.site-header.hero-mode:not(.scrolled) .burger-btn span {
  background: var(--c-white);
}

.burger-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-btn.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.burger-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 101;
  background: rgba(41, 66, 57, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: calc(var(--header-h) + 36px) var(--gutter) 40px;
  flex-direction: column;
  justify-content: flex-start;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}

.mobile-nav.active {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 40px;
}

.mobile-nav-links a {
  font-family: var(--f-heading);
  font-size: clamp(30px, 7vw, 48px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease);
  letter-spacing: -0.02em;
  display: block;
}

.mobile-nav-links a:hover {
  color: var(--c-accent);
  padding-left: 14px;
}

.mobile-nav-footer {
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-footer p {
  font-family: var(--f-ui);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
}

.mobile-nav-footer a {
  color: var(--c-accent);
}

.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  overflow-x: clip;
  max-width: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(38, 45, 43, 0.12) 0%, rgba(38, 45, 43, 0.28) 40%, rgba(38, 45, 43, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(60px, 8vw, 100px);
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 20px;
}

.hero-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--c-accent);
}

.hero-headline {
  font-family: var(--f-heading);
  font-size: clamp(44px, 6.5vw, 90px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--c-white);
  max-width: 820px;
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: italic;
  font-family: var(--f-accent);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
}

.hero-sub {
  font-family: var(--f-body);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  max-width: 540px;
  margin-bottom: 40px;
}

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

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  right: var(--gutter);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll-indicator span {
  font-family: var(--f-ui);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 52px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  right: 0;
  height: 100%;
  background: var(--c-accent);
  animation: scrollLine 1.9s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 100%; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--r-full);
  font-family: var(--f-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--g-btn);
  color: var(--c-white);
  box-shadow: 0 4px 16px rgba(185, 152, 91, 0.32);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(185, 152, 91, 0.48);
}

.btn-outline {
  background: transparent;
  color: var(--c-white);
  border: 1.5px solid rgba(255, 255, 255, 0.48);
}

.btn-outline:hover {
  border-color: var(--c-white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--c-primary);
  border: 1.5px solid var(--c-border);
}

.btn-outline-dark:hover {
  background: var(--c-primary);
  color: var(--c-white);
  border-color: var(--c-primary);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--c-primary);
  color: var(--c-white);
}

.btn-dark:hover {
  background: #2d4e42;
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 14px;
}

.section {
  padding: var(--section-py) 0;
  overflow-x: hidden;
  max-width: 100%;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 18px;
}

.section-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--c-accent);
}

.section-title {
  font-family: var(--f-heading);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--c-text);
}

.section-title em {
  font-style: italic;
  font-family: var(--f-accent);
  font-weight: 400;
  color: var(--c-primary);
}

.section-sub {
  font-family: var(--f-body);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.7;
  color: rgba(38, 45, 43, 0.62);
  max-width: 560px;
}

.value-prop {
  background: var(--c-bg);
}

.value-prop-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
}

.value-prop-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.value-prop-statement {
  font-family: var(--f-accent);
  font-size: clamp(20px, 2.2vw, 30px);
  font-style: italic;
  line-height: 1.55;
  color: var(--c-primary);
  border-left: 3px solid var(--c-accent);
  padding-left: 24px;
}

.value-prop-text {
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.8;
  color: rgba(38, 45, 43, 0.7);
}

.value-prop-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: var(--r-full);
  border: 1px solid var(--c-border);
  font-family: var(--f-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--c-primary);
  background: rgba(53, 88, 76, 0.04);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
  flex-shrink: 0;
}

.value-prop-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.value-stat {
  padding: 28px 24px;
  background: var(--c-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.value-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

.value-stat.featured {
  grid-column: 1 / -1;
  background: var(--g-depth);
  border: none;
}

.value-stat.featured .stat-num,
.value-stat.featured .stat-label {
  color: var(--c-white);
}

.value-stat.featured .stat-label {
  opacity: 0.7;
}

.stat-num {
  font-family: var(--f-heading);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--c-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-num sup {
  font-size: 0.55em;
  color: var(--c-accent);
}

.stat-label {
  font-family: var(--f-body);
  font-size: 14px;
  color: rgba(38, 45, 43, 0.58);
  line-height: 1.4;
}

.signature {
  background: var(--c-primary);
  position: relative;
  overflow: hidden;
  overflow-x: clip;
}

.signature-bg {
  position: absolute;
  inset: 0;
}

.signature-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.signature-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
}

.signature-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.signature-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(185, 152, 91, 0.9);
}

.signature-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--c-accent);
}

.signature-title {
  font-family: var(--f-heading);
  font-size: clamp(34px, 4.5vw, 62px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--c-white);
}

.signature-title em {
  font-family: var(--f-accent);
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
}

.signature-text {
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.68);
}

.signature-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sig-facts {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sig-fact {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--r-md);
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: background var(--dur) var(--ease);
}

.sig-fact:hover {
  background: rgba(255, 255, 255, 0.1);
}

.sig-fact-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  background: rgba(185, 152, 91, 0.18);
  border: 1px solid rgba(185, 152, 91, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sig-fact-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--c-accent);
  fill: none;
  stroke-width: 1.5;
}

.sig-fact-body h4 {
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: 4px;
}

.sig-fact-body p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.portfolio-section {
  background: var(--g-bg);
}

.portfolio-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(36px, 5vw, 60px);
  flex-wrap: wrap;
}

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

.portfolio-grid .p-card:first-child {
  grid-column: 1 / 3;
  aspect-ratio: 16 / 9;
}

.p-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  cursor: pointer;
}

.p-card-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.p-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}

.p-card:hover .p-card-img img {
  transform: scale(1.06);
}

.p-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(38, 45, 43, 0.88) 100%);
}

.p-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
}

.p-card-region {
  font-family: var(--f-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 7px;
}

.p-card-title {
  font-family: var(--f-heading);
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.p-card-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.insight-section {
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.insight-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
}

.insight-sticky {
  position: sticky;
  top: calc(var(--header-h) + 36px);
}

.insight-tag {
  font-family: var(--f-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 14px;
}

.insight-title {
  font-family: var(--f-heading);
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--c-text);
  margin-bottom: 20px;
}

.insight-title em {
  font-family: var(--f-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--c-primary);
}

.insight-meta {
  font-family: var(--f-ui);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(38, 45, 43, 0.45);
}

.insight-content-area {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.insight-para {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.82;
  color: rgba(38, 45, 43, 0.78);
}

.insight-para strong {
  color: var(--c-text);
  font-weight: 600;
}

.insight-quote {
  padding: 28px 32px;
  background: rgba(53, 88, 76, 0.04);
  border-left: 3px solid var(--c-accent);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}

.insight-quote p {
  font-family: var(--f-accent);
  font-size: clamp(18px, 2vw, 24px);
  font-style: italic;
  line-height: 1.5;
  color: var(--c-primary);
}

.insight-quote cite {
  display: block;
  margin-top: 12px;
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: 0.08em;
  font-style: normal;
  color: rgba(38, 45, 43, 0.45);
  text-transform: uppercase;
}

.services-section {
  background: var(--c-white);
}

.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 72px);
}

.services-table-wrap {
  overflow-x: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-sm);
}

.services-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--c-white);
  min-width: 620px;
}

.services-table thead th {
  padding: 24px 28px;
  text-align: left;
  background: rgba(53, 88, 76, 0.03);
  border-bottom: 1px solid var(--c-border);
}

.services-table thead th:first-child {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(38, 45, 43, 0.4);
  font-weight: 500;
}

.services-table thead th:not(:first-child) {
  font-family: var(--f-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: -0.02em;
}

.services-table thead th.featured-col {
  background: rgba(53, 88, 76, 0.06);
  border-bottom: 2px solid var(--c-primary);
}

.services-table tbody tr {
  border-bottom: 1px solid var(--c-border-light);
  transition: background var(--dur-fast) var(--ease);
}

.services-table tbody tr:hover {
  background: rgba(53, 88, 76, 0.02);
}

.services-table tbody td {
  padding: 16px 28px;
  font-size: 14px;
  color: var(--c-text);
  vertical-align: middle;
}

.services-table tbody td:first-child {
  font-weight: 500;
  color: rgba(38, 45, 43, 0.72);
}

.services-table tbody td.featured-col {
  background: rgba(53, 88, 76, 0.03);
}

.services-table tfoot td {
  padding: 22px 28px;
  background: rgba(53, 88, 76, 0.03);
  border-top: 2px solid var(--c-border);
}

.services-table tfoot td.featured-col {
  background: rgba(53, 88, 76, 0.07);
}

.check-icon {
  color: var(--c-primary);
  font-size: 15px;
  font-weight: 600;
}

.cross-icon {
  color: rgba(38, 45, 43, 0.2);
  font-size: 15px;
}

.price-tag {
  font-family: var(--f-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--c-primary);
  letter-spacing: -0.03em;
}

.price-tag small {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 500;
  color: rgba(38, 45, 43, 0.45);
  letter-spacing: 0;
}

.featured-badge {
  display: inline-block;
  padding: 3px 10px;
  background: var(--g-btn);
  border-radius: var(--r-full);
  font-family: var(--f-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-white);
  margin-top: 6px;
}

.timeline-section {
  background: var(--g-bg);
}

.timeline-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(48px, 7vw, 100px);
}

.timeline-intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.timeline-sticky {
  position: sticky;
  top: calc(var(--header-h) + 36px);
}

.timeline-list {
  display: flex;
  flex-direction: column;
  position: relative;
}

.timeline-list::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--c-border) 0%, transparent 100%);
}

.t-step {
  display: flex;
  gap: 24px;
  padding: 32px 0;
}

.t-step:not(:last-child) {
  border-bottom: 1px solid var(--c-border-light);
}

.t-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--c-primary);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}

.t-step:hover .t-step-num {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: var(--c-white);
}

.t-step-body {
  padding-top: 8px;
}

.t-step-label {
  font-family: var(--f-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 6px;
}

.t-step-title {
  font-family: var(--f-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.t-step-text {
  font-size: 14px;
  line-height: 1.72;
  color: rgba(38, 45, 43, 0.62);
}

.marquee-section {
  padding: clamp(32px, 4vw, 54px) 0;
  overflow: hidden;
  overflow-x: clip;
  max-width: 100vw;
  background: var(--c-white);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.js-marquee-wrap {
  overflow: hidden;
  overflow-x: clip;
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.js-mq-row {
  display: flex;
  white-space: nowrap;
  will-change: transform;
  user-select: none;
}

.js-mq-row span {
  font-family: var(--f-heading);
  font-size: clamp(20px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--c-text);
  opacity: 0.12;
  padding: 0 20px;
  line-height: 1.2;
}

.js-mq-row span.sep {
  color: var(--c-accent);
  opacity: 0.18;
  padding: 0 6px;
}

.social-proof-section {
  background: var(--c-bg);
}

.proof-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: clamp(48px, 6vw, 80px);
  box-shadow: var(--sh-sm);
}

.proof-stat {
  background: var(--c-white);
  padding: clamp(28px, 3.5vw, 44px) clamp(20px, 3vw, 36px);
  text-align: center;
}

.proof-stat-num {
  font-family: var(--f-heading);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--c-primary);
  line-height: 1;
  margin-bottom: 10px;
}

.proof-stat-label {
  font-family: var(--f-body);
  font-size: 14px;
  color: rgba(38, 45, 43, 0.58);
  line-height: 1.4;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.t-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
  padding: 28px 24px;
  box-shadow: var(--sh-xs);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.t-card-stars {
  display: flex;
  gap: 3px;
}

.t-card-stars span {
  color: var(--c-accent);
  font-size: 14px;
}

.t-card-text {
  font-family: var(--f-accent);
  font-size: clamp(15px, 1.4vw, 17px);
  font-style: italic;
  line-height: 1.65;
  color: var(--c-text);
  flex: 1;
}

.t-card-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--c-border-light);
}

.t-card-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--g-depth);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-white);
  flex-shrink: 0;
}

.t-card-name {
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 2px;
}

.t-card-location {
  font-family: var(--f-ui);
  font-size: 12px;
  color: rgba(38, 45, 43, 0.48);
  letter-spacing: 0.02em;
}

.trust-badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 32px 0;
  border-top: 1px solid var(--c-border);
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.45;
  transition: opacity var(--dur) var(--ease);
}

.trust-badge:hover {
  opacity: 0.82;
}

.trust-badge-name {
  font-family: var(--f-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text);
}

.trust-badge-sub {
  font-family: var(--f-ui);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: rgba(38, 45, 43, 0.5);
  text-align: center;
}

.cta-block {
  position: relative;
  overflow: hidden;
  overflow-x: clip;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(38, 45, 43, 0.84), rgba(53, 88, 76, 0.74));
}

.cta-inner {
  position: relative;
  z-index: 2;
  padding: clamp(72px, 9vw, 130px) 0;
  text-align: center;
}

.cta-news-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(185, 152, 91, 0.18);
  border: 1px solid rgba(185, 152, 91, 0.38);
  border-radius: var(--r-full);
  font-family: var(--f-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 28px;
}

.cta-headline {
  font-family: var(--f-heading);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--c-white);
  margin-bottom: 24px;
}

.cta-sub {
  font-family: var(--f-body);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  max-width: 580px;
  margin: 0 auto 40px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-mini {
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
}

.contact-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 90px);
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-family: var(--f-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(38, 45, 43, 0.56);
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--c-text);
  outline: none;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  width: 100%;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(38, 45, 43, 0.35);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(53, 88, 76, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info-title {
  font-family: var(--f-heading);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--c-text);
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ci-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ci-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  background: rgba(53, 88, 76, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ci-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--c-primary);
  fill: none;
  stroke-width: 1.5;
}

.ci-label {
  font-family: var(--f-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(38, 45, 43, 0.46);
  margin-bottom: 3px;
}

.ci-value {
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--c-text);
  font-weight: 500;
  line-height: 1.4;
}

.ci-value a {
  transition: color var(--dur) var(--ease);
}

.ci-value a:hover {
  color: var(--c-primary);
}

.site-footer {
  background: var(--c-text);
  overflow-x: clip;
  max-width: 100%;
}

.footer-main {
  padding: clamp(52px, 7vw, 88px) 0 clamp(36px, 4vw, 52px);
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-logo {
  font-family: var(--f-heading);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--c-white);
}

.footer-logo span {
  color: var(--c-accent);
}

.footer-tagline {
  font-family: var(--f-accent);
  font-size: 15px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.44);
  line-height: 1.6;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-list a {
  font-family: var(--f-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--dur) var(--ease);
}

.footer-contact-list a:hover {
  color: var(--c-accent);
}

.footer-col h4 {
  font-family: var(--f-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-family: var(--f-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.56);
  transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease);
}

.footer-col ul a:hover {
  color: rgba(255, 255, 255, 0.9);
  padding-left: 5px;
}

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-family: var(--f-ui);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.02em;
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-family: var(--f-ui);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.02em;
  transition: color var(--dur) var(--ease);
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.68);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.72s var(--ease-out), transform 0.72s var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.72s var(--ease-out), transform 0.72s var(--ease-out);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.72s var(--ease-out), transform 0.72s var(--ease-out);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

.page-hero {
  padding: calc(var(--header-h) + clamp(52px, 7vw, 90px)) 0 clamp(52px, 7vw, 90px);
  background: var(--g-depth);
  position: relative;
  overflow: hidden;
  overflow-x: clip;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(185, 152, 91, 0.06);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero-label {
  font-family: var(--f-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-hero-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--c-accent);
}

.page-hero-title {
  font-family: var(--f-heading);
  font-size: clamp(38px, 5.5vw, 76px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--c-white);
  max-width: 740px;
  margin-bottom: 18px;
}

.page-hero-title em {
  font-family: var(--f-accent);
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
}

.page-hero-sub {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
  max-width: 540px;
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
}

.about-img-wrap img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--r-md);
  backdrop-filter: blur(12px);
}

.about-img-badge p {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(38, 45, 43, 0.48);
  margin-bottom: 4px;
}

.about-img-badge strong {
  font-family: var(--f-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-primary);
  letter-spacing: -0.02em;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.about-text p {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.82;
  color: rgba(38, 45, 43, 0.73);
}

.about-certifications {
  padding: 24px;
  background: rgba(53, 88, 76, 0.04);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
}

.cert-title {
  font-family: var(--f-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(38, 45, 43, 0.46);
  margin-bottom: 12px;
}

.cert-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cert-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-full);
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--c-primary);
}

.cert-item::before {
  content: '✓';
  color: var(--c-accent);
  font-size: 11px;
  font-weight: 700;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}

.av-card {
  padding: 28px 22px;
  background: var(--c-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.av-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

.av-num {
  font-family: var(--f-heading);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--c-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.av-num span {
  color: var(--c-accent);
}

.av-label {
  font-family: var(--f-body);
  font-size: 14px;
  color: rgba(38, 45, 43, 0.6);
  line-height: 1.4;
}

.faq-section {
  background: var(--c-bg);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-h) + 36px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-white);
}

.faq-item {
  border-bottom: 1px solid var(--c-border-light);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease);
}

.faq-question:hover {
  background: rgba(53, 88, 76, 0.025);
}

.faq-question h3 {
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.4;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(53, 88, 76, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--dur) var(--ease);
}

.faq-toggle svg {
  width: 16px;
  height: 16px;
  stroke: var(--c-primary);
  fill: none;
  stroke-width: 2;
  transition: transform var(--dur) var(--ease);
}

.faq-item.open .faq-toggle {
  background: var(--c-primary);
}

.faq-item.open .faq-toggle svg {
  stroke: var(--c-white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease);
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 4px 28px 24px;
  font-size: 15px;
  line-height: 1.78;
  color: rgba(38, 45, 43, 0.66);
}

.portfolio-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 9px 22px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--c-border);
  font-family: var(--f-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(38, 45, 43, 0.62);
  background: transparent;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: var(--c-white);
}

.portfolio-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pf-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.pf-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}

.pf-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
  display: block;
}

.pf-card:hover img {
  transform: scale(1.05);
}

.pf-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent, rgba(38, 45, 43, 0.88));
  transform: translateY(6px);
  transition: transform var(--dur) var(--ease);
}

.pf-card:hover .pf-card-info {
  transform: translateY(0);
}

.pf-card-category {
  font-family: var(--f-ui);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 6px;
}

.pf-card-name {
  font-family: var(--f-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: -0.02em;
}

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

.service-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}

.service-card-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}

.service-card:hover .service-card-img img {
  transform: scale(1.06);
}

.service-card-body {
  padding: 24px;
}

.service-card-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(53, 88, 76, 0.07);
  border-radius: var(--r-full);
  font-family: var(--f-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 12px;
}

.service-card-title {
  font-family: var(--f-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.service-card-desc {
  font-size: 14px;
  line-height: 1.72;
  color: rgba(38, 45, 43, 0.62);
  margin-bottom: 20px;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--c-border-light);
}

.service-price {
  font-family: var(--f-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--c-primary);
  letter-spacing: -0.03em;
}

.service-price small {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 500;
  color: rgba(38, 45, 43, 0.42);
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.sf-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: rgba(38, 45, 43, 0.7);
}

.sf-item::before {
  content: '✓';
  color: var(--c-accent);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 90px);
  align-items: start;
}

.contact-page-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.map-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-md);
  margin-top: 32px;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: none;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: var(--f-heading);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--c-text);
  margin: 44px 0 16px;
}

.legal-content h3 {
  font-family: var(--f-heading);
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 600;
  color: var(--c-text);
  margin: 30px 0 12px;
}

.legal-content p {
  font-size: 15px;
  line-height: 1.82;
  color: rgba(38, 45, 43, 0.74);
  margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 18px;
}

.legal-content ol {
  list-style: decimal;
}

.legal-content li {
  font-size: 15px;
  line-height: 1.82;
  color: rgba(38, 45, 43, 0.74);
  margin-bottom: 7px;
}

.legal-content a {
  color: var(--c-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-meta {
  padding: 20px 24px;
  background: rgba(53, 88, 76, 0.04);
  border-radius: var(--r-md);
  border-left: 3px solid var(--c-accent);
  margin-bottom: 44px;
}

.legal-meta p {
  font-family: var(--f-ui);
  font-size: 13px;
  color: rgba(38, 45, 43, 0.56);
  margin: 0;
}

.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--g-bg);
  padding: 40px var(--gutter);
}

.thanks-card {
  max-width: 620px;
  width: 100%;
  text-align: center;
  padding: clamp(44px, 6vw, 76px);
  background: var(--c-white);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
  border: 1px solid var(--c-border);
}

.thanks-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(53, 88, 76, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  border: 1px solid var(--c-border);
}

.thanks-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--c-primary);
  fill: none;
  stroke-width: 2;
}

.thanks-label {
  font-family: var(--f-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 16px;
}

.thanks-title {
  font-family: var(--f-heading);
  font-size: clamp(28px, 4.5vw, 50px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--c-text);
  margin-bottom: 16px;
  line-height: 1.08;
}

.thanks-text {
  font-size: 16px;
  line-height: 1.72;
  color: rgba(38, 45, 43, 0.62);
  margin-bottom: 36px;
}

.thanks-divider {
  width: 48px;
  height: 1px;
  background: var(--c-border);
  margin: 0 auto 32px;
}

@media (max-width: 1024px) {
  .site-nav { display: none; }
  .header-cta { display: none; }
  .burger-btn { display: flex; }
  .mobile-nav { display: flex; }

  .value-prop-inner { grid-template-columns: 1fr; gap: 44px; }
  .signature-inner { grid-template-columns: 1fr; gap: 44px; }
  .insight-grid { grid-template-columns: 1fr; gap: 44px; }
  .insight-sticky { position: static; }
  .services-intro { grid-template-columns: 1fr; gap: 32px; }
  .timeline-inner { grid-template-columns: 1fr; gap: 44px; }
  .timeline-sticky { position: static; }
  .contact-mini-grid { grid-template-columns: 1fr; gap: 44px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .about-story { grid-template-columns: 1fr; gap: 44px; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-intro { position: static; }
  .about-values-grid { grid-template-columns: 1fr 1fr 1fr; }

  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid .p-card:first-child { grid-column: 1 / -1; }

  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .service-cards-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-full-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-grid .p-card:first-child { grid-column: auto; aspect-ratio: 4 / 3; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .proof-stats-row { grid-template-columns: 1fr; }
  .value-prop-right { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .service-cards-grid { grid-template-columns: 1fr; }
  .portfolio-full-grid { grid-template-columns: 1fr 1fr; }
  .about-values-grid { grid-template-columns: 1fr 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .trust-badges-row { gap: 24px; }
}

@media (max-width: 480px) {
  .value-prop-right { grid-template-columns: 1fr; }
  .value-stat.featured { grid-column: auto; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; }
  .about-values-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-full-grid { grid-template-columns: 1fr; }
}

@media (min-width: 1025px) {
  .hero-bg img {
    animation: heroPan 16s ease-in-out infinite alternate;
  }
}

@keyframes heroPan {
  from { transform: scale(1.06) translateY(0); }
  to { transform: scale(1.06) translateY(-2.5%); }
}

html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
}
